From bb9d7925998b52ed85af1c6b742e5b8c5c0a9a6a Mon Sep 17 00:00:00 2001 From: Abhijith Chatra Date: Mon, 23 Apr 2018 10:10:43 -0700 Subject: [PATCH] Fixing zoomer lesson docs --- docs/lessons/zoomer/quiz-answers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lessons/zoomer/quiz-answers.md b/docs/lessons/zoomer/quiz-answers.md index 4b240242..899732b8 100644 --- a/docs/lessons/zoomer/quiz-answers.md +++ b/docs/lessons/zoomer/quiz-answers.md @@ -15,7 +15,7 @@ Write the line of code to measure the acceleration and then store in it a variab
```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
```blocks -let accX = input.acceleration("x") +let accX = input.acceleration(Dimension.X) basic.showNumber(accX, 150) ```