Skip to content

Commit 143651c

Browse files
authored
Merge pull request #4122 from henrikt-ma/height-of-ramp
Remove plural 's' in 'height of ramps'
2 parents 44c8fe5 + 0c013e4 commit 143651c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Modelica/Blocks/Sources.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ The Real output y is a step signal:
242242
end Step;
243243

244244
block Ramp "Generate ramp signal"
245-
parameter Real height=1 "Height of ramps"
245+
parameter Real height=1 "Height of ramp"
246246
annotation(Dialog(groupImage="modelica://Modelica/Resources/Images/Blocks/Sources/Ramp.png"));
247247
parameter SI.Time duration(min=0.0, start=2)
248248
"Duration of ramp (= 0.0 gives a Step)";

Modelica/Clocked/RealSignals/TickBasedSources/Ramp.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
within Modelica.Clocked.RealSignals.TickBasedSources;
22
block Ramp "Generate ramp signal based on counted clock ticks"
33
extends Interfaces.PartialClockedSO;
4-
parameter Real height=1 "Height of ramps";
4+
parameter Real height=1 "Height of ramp";
55
parameter Integer durationTicks(min=1) = 1
66
"Durations of ramp in number of clock ticks";
77
parameter Real offset=0 "Offset of output signal";

Modelica/Clocked/RealSignals/TimeBasedSources/Ramp.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
within Modelica.Clocked.RealSignals.TimeBasedSources;
22
block Ramp "Generate ramp signal"
33
extends Interfaces.PartialClockedSO;
4-
parameter Real height=1 "Height of ramps";
4+
parameter Real height=1 "Height of ramp";
55
parameter SI.Time duration(min=Modelica.Constants.small, start = 2)
66
"Durations of ramp";
77
parameter Real offset=0 "Offset of output signal";

0 commit comments

Comments
 (0)