Skip to content

Commit fe0fceb

Browse files
authored
Merge pull request #1697 from rbnpi/master
Three corrections to Documentation
2 parents 8aaedcc + 6bc4ba2 commit fe0fceb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/server/sonicpi/lib/sonicpi/lang/core.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -738,20 +738,20 @@ def osc(path, *args)
738738
" # Send an OSC messages with arguments to another program on the same machine
739739
740740
use_osc \"localhost\", 7000 # Specify port 7000 on this machine
741-
osc \"/foo/bar\" 1, 3.89, \"baz\" # Send an OSC message with path \"/foo/bar\"
741+
osc \"/foo/bar\", 1, 3.89, \"baz\" # Send an OSC message with path \"/foo/bar\"
742742
# and three arguments:
743743
# 1) The whole number (integer) 1
744-
# 2) The fractional number (float) 3,89
744+
# 2) The fractional number (float) 3.89
745745
# 3) The string \"baz\"
746746
",
747747

748748
" # Send an OSC messages with arguments to another program on a different machine
749749
750750
use_osc \"10.0.1.5\", 7000 # Specify port 7000 on the machine with address 10.0.1.5
751-
osc \"/foo/bar\" 1, 3.89, \"baz\" # Send an OSC message with path \"/foo/bar\"
751+
osc \"/foo/bar\", 1, 3.89, \"baz\" # Send an OSC message with path \"/foo/bar\"
752752
# and three arguments:
753753
# 1) The whole number (integer) 1
754-
# 2) The fractional number (float) 3,89
754+
# 2) The fractional number (float) 3.89
755755
# 3) The string \"baz\"
756756
",
757757

etc/doc/tutorial/10.1-Set-and-Get.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ on, try it. See if you get the following in your log:
9595
9696
{run: 0, time: 3.5}
9797
└─ 75.6048583984375
98-
```
98+
```
9999

100100
Try running it a few times - see, it's the same every time. This is
101101
what we call deterministic behaviour and it's really very important

0 commit comments

Comments
 (0)