summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSimon Siegert <sisiegert@uni-potsdam.de>2018-01-25 20:56:33 +0100
committerGitHub <noreply@github.com>2018-01-25 20:56:33 +0100
commit0d0b536b28d7f3ed8d35cc557142b15d52299526 (patch)
tree18728b0d0ec0ef41503e3dfea20fb6f22f8771de
parentfce4a810cb066d6d83b829609ac15b08879cd1b0 (diff)
Fix naming of constant
-rw-r--r--typescript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/typescript.html.markdown b/typescript.html.markdown
index 10f01ebc..acc258b4 100644
--- a/typescript.html.markdown
+++ b/typescript.html.markdown
@@ -29,7 +29,7 @@ let notSure: any = 4;
notSure = "maybe a string instead";
notSure = false; // okay, definitely a boolean
-// Use const keyword for constant variables
+// Use const keyword for constants
const numLivesForCat = 9;
numLivesForCat = 1; // Error