Skip to content

Commit 9f8d8d4

Browse files
committed
docs: typos
1 parent 3d0d960 commit 9f8d8d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/node/audio_buffer_source.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ struct PlaybackInfo {
5050
}
5151

5252
// The strategy for loop parameters is as follow: store the given values
53-
// in the loop_parameter thread safe instance which only lives in control
53+
// in the `loop_parameters` thread safe instance which only lives in control
5454
// thread(s) and send a message to the render thread which stores the raw values.
55-
// Values between control and render side might be desynchronized for while
55+
// Values between control and render side might be desynchronised for little while
5656
// but the developer experience will appear more logical, i.e.
5757
// ```no_run
5858
// node.set_loop(true);
59-
// node._loop_
59+
// println!("{:?}", node.loop_());
6060
// > true // is guaranteed
6161
// ```
6262
// Note that this seems to be the strategy used by Firefox

0 commit comments

Comments
 (0)