Skip to content

Commit

Permalink
Minor clarification in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
gridbugs committed Jul 29, 2023
1 parent 133b9bb commit 400dd66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ let osc : float Signal.t = oscillator (const Sine) (const 440.0)
which changes from [false] to [true] twice per second, and spends 30% of the
time on. This is often used to communicate the fact that a key is pressed to
a module that responds to such events. The [Signal.Gate.t] type is a wrapper
of [bool t]. *)
of [bool Signal.t]. *)
let note_gate : Signal.Gate.t =
periodic_gate ~frequency_hz:(const 2.0) ~duty_01:(const 0.3)
Expand Down
2 changes: 1 addition & 1 deletion examples/from_readme.ml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let osc : float Signal.t = oscillator (const Sine) (const 440.0)
which changes from [false] to [true] twice per second, and spends 30% of the
time on. This is often used to communicate the fact that a key is pressed to
a module that responds to such events. The [Signal.Gate.t] type is a wrapper
of [bool t]. *)
of [bool Signal.t]. *)
let note_gate : Signal.Gate.t =
periodic_gate ~frequency_hz:(const 2.0) ~duty_01:(const 0.3)

Expand Down

0 comments on commit 400dd66

Please sign in to comment.