fixed semicolon typo

pull/6034/head
Akira Laine 2016-01-10 19:09:17 +11:00 committed by Berkeley Martinez
parent 72488ed34d
commit 7347f4d75a
1 changed files with 1 additions and 1 deletions

View File

@ -757,7 +757,7 @@
"title": "Declare String Variables",
"description": [
"Previously we have used the code",
"<code>var myName = \"your name\"</code>",
"<code>var myName = \"your name\";</code>",
"<code>\"your name\"</code> is called a <dfn>string</dfn> <dfn>literal</dfn>. It is a string because it is a series of zero or more characters enclosed in single or double quotes.",
"<h4>Instructions</h4>",
"Create two new <code>string</code> variables: <code>myFirstName</code> and <code>myLastName</code> and assign them the values of your first and last name, respectively."