Remove trailing whitespace

This commit is contained in:
Thomas Denney 2016-08-09 16:39:50 +01:00
parent 7f40889103
commit 9fd2a3a3e6
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ basic.showNumber(counter);
To change the contents of a variable use the assignment operator. The following code sets `counter` to 1 and then increments `counter` by 10: To change the contents of a variable use the assignment operator. The following code sets `counter` to 1 and then increments `counter` by 10:
```blocks ```blocks
let counter = 1; let counter = 1;
counter = counter + 10; counter = counter + 10;
basic.showNumber(counter); basic.showNumber(counter);