Skip to content

Commit 5bce896

Browse files
committed
unify on Block-level rather than block level
1 parent dc969c7 commit 5bce896

File tree

1 file changed

+5
-5
lines changed
  • app/server/sonicpi/lib/sonicpi/mods

1 file changed

+5
-5
lines changed

app/server/sonicpi/lib/sonicpi/mods/sound.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def with_arg_bpm_scaling(bool, &block)
161161
end
162162
doc name: :with_arg_bpm_scaling,
163163
introduced: Version.new(2,0,0),
164-
summary: "Block level enable and disable BPM scaling",
164+
summary: "Block-level enable and disable BPM scaling",
165165
doc: "Turn synth argument bpm scaling on or off for the supplied block. Note, using rt for args will result in incorrect times when used within this block.",
166166
args: [],
167167
opts: nil,
@@ -254,7 +254,7 @@ def with_debug(v, &block)
254254
end
255255
doc name: :with_debug,
256256
introduced: Version.new(2,0,0),
257-
summary: "Block level enable and disable debug",
257+
summary: "Block-level enable and disable debug",
258258
doc: "Similar to use_debug except only applies to code within supplied do/end block. Previous debug value is restored after block.",
259259
args: [[:true_or_false, :boolean]],
260260
opts: nil,
@@ -310,7 +310,7 @@ def with_arg_checks(v, &block)
310310
end
311311
doc name: :with_arg_checks,
312312
introduced: Version.new(2,0,0),
313-
summary: "Block level enable and disable arg checks",
313+
summary: "Block-level enable and disable arg checks",
314314
doc: "Similar to use_arg_checks except only applies to code within supplied do/end block. Previous arg check value is restored after block.",
315315
args: [[:true_or_false, :boolean]],
316316
opts: nil,
@@ -374,7 +374,7 @@ def with_transpose(shift, &block)
374374
end
375375
doc name: :with_transpose,
376376
introduced: Version.new(2,0,0),
377-
summary: "Block level note transposition",
377+
summary: "Block-level note transposition",
378378
doc: "Similar to use_transpose except only applies to code within supplied do/end block. Previous transpose value is restored after block.",
379379
args: [[:note_shift, :number]],
380380
opts: nil,
@@ -425,7 +425,7 @@ def with_synth(synth_name, &block)
425425
end
426426
doc name: :with_synth,
427427
introduced: Version.new(2,0,0),
428-
summary: "Block level synth switching",
428+
summary: "Block-level synth switching",
429429
doc: "Switch the current synth to synth_name but only for the duration of the do/end block. After the do/end block has completed, the previous synth is restored.",
430430
args: [[:synth_name, :symbol]],
431431
opts: nil,

0 commit comments

Comments
 (0)