Correct assignment blocks in docs

Previously these blocks were not rendering.
This commit is contained in:
Thomas Denney 2016-07-19 11:26:41 +01:00
parent bb97b57b01
commit 64ebb5c8c3
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ A *String* is a sequence of characters. For the BBC micro:bit, ASCII character c
### Create a string variable
```block
salutation = "Hello";
let salutation = "Hello";
```
To create a variable that holds a string:
@ -25,7 +25,7 @@ To create a variable that holds a string:
Your code should look something like this:
```block
salutation = "Hello";
let salutation = "Hello";
```
### The function `show string`