Skip to content

Commit 83aa015

Browse files
committed
More spaces around commas
1 parent 51f3c1f commit 83aa015

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

programming/sr/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ R.wait_start()
116116
~~~~~
117117

118118
During the setup phase, the Robot hardware is inaccessible.
119-
For example,`R.motors` is unavailable since enumerations occurs in the `init` function.
119+
For example, `R.motors` is unavailable since enumerations occurs in the `init` function.
120120
In this phase you can configure how the Robot finds and configures hardware.
121121

122122
After the `init` call, all hardware is accessible.

programming/sr/vision/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The resolution that this image is taken at can be changed using the optional `re
5555

5656
~~~~~ python
5757
# Take a photo at 1280 x 1024
58-
markers = R.see( res=(1280,1024) )
58+
markers = R.see(res=(1280, 1024))
5959
~~~~~
6060

6161
There are currently two kinds of webcam issued with SR kit: the Logitech C500 and C270.

tutorials/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ var = input("Enter a number: ")
394394
if var == "":
395395
print("You didn't enter anything!")
396396
else:
397-
print("You entered",float(var))
397+
print("You entered", float(var))
398398
~~~~~
399399

400400
Now, extend your program to let the user enter the list of values. Stop asking for new list entries when they do not enter anything at the `input` prompt.

0 commit comments

Comments
 (0)