Fixing zoomer lesson docs

This commit is contained in:
Abhijith Chatra 2018-04-23 10:10:43 -07:00 committed by GitHub
parent a0a84b4006
commit bb9d792599
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ Write the line of code to measure the acceleration and then store in it a variab
<br/>
```blocks
let accX = input.acceleration("x")
let accX = input.acceleration(Dimension.X)
```
Note: acceleration does not have be measured in the "x" direction. It can also be in the "y" or "z" direction.
@ -27,7 +27,7 @@ After storing the acceleration in a variable, write the code to show acceleratio
<br/>
```blocks
let accX = input.acceleration("x")
let accX = input.acceleration(Dimension.X)
basic.showNumber(accX, 150)
```