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

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 ### Create a string variable
```block ```block
salutation = "Hello"; let salutation = "Hello";
``` ```
To create a variable that holds a string: 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: Your code should look something like this:
```block ```block
salutation = "Hello"; let salutation = "Hello";
``` ```
### The function `show string` ### The function `show string`