Skip to content

Commit

Permalink
Remove plural 's' in 'height of ramps'
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed Apr 27, 2023
1 parent 7d2e8d7 commit 0c013e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Modelica/Blocks/Sources.mo
Expand Up @@ -242,7 +242,7 @@ The Real output y is a step signal:
end Step;

block Ramp "Generate ramp signal"
parameter Real height=1 "Height of ramps"
parameter Real height=1 "Height of ramp"
annotation(Dialog(groupImage="modelica://Modelica/Resources/Images/Blocks/Sources/Ramp.png"));
parameter SI.Time duration(min=0.0, start=2)
"Duration of ramp (= 0.0 gives a Step)";
Expand Down
2 changes: 1 addition & 1 deletion Modelica/Clocked/RealSignals/TickBasedSources/Ramp.mo
@@ -1,7 +1,7 @@
within Modelica.Clocked.RealSignals.TickBasedSources;
block Ramp "Generate ramp signal based on counted clock ticks"
extends Interfaces.PartialClockedSO;
parameter Real height=1 "Height of ramps";
parameter Real height=1 "Height of ramp";
parameter Integer durationTicks(min=1) = 1
"Durations of ramp in number of clock ticks";
parameter Real offset=0 "Offset of output signal";
Expand Down
2 changes: 1 addition & 1 deletion Modelica/Clocked/RealSignals/TimeBasedSources/Ramp.mo
@@ -1,7 +1,7 @@
within Modelica.Clocked.RealSignals.TimeBasedSources;
block Ramp "Generate ramp signal"
extends Interfaces.PartialClockedSO;
parameter Real height=1 "Height of ramps";
parameter Real height=1 "Height of ramp";
parameter SI.Time duration(min=Modelica.Constants.small, start = 2)
"Durations of ramp";
parameter Real offset=0 "Offset of output signal";
Expand Down

0 comments on commit 0c013e4

Please sign in to comment.