diff --git a/README.md b/README.md index b48da90..793070e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/examples/from_readme.ml b/examples/from_readme.ml index fd4c398..4d208fb 100644 --- a/examples/from_readme.ml +++ b/examples/from_readme.ml @@ -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)