From 64ebb5c8c340af756952453821f19eea2dbe4472 Mon Sep 17 00:00:00 2001 From: Thomas Denney Date: Tue, 19 Jul 2016 11:26:41 +0100 Subject: [PATCH] Correct assignment blocks in docs Previously these blocks were not rendering. --- docs/reference/types/string.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/types/string.md b/docs/reference/types/string.md index ec2635ab..cb821a96 100644 --- a/docs/reference/types/string.md +++ b/docs/reference/types/string.md @@ -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`