diff options
author | Adam Bard <github@adambard.com> | 2018-02-20 00:03:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-20 00:03:50 -0800 |
commit | 10f0121b01863dc9c664b1652dc7109f091b9545 (patch) | |
tree | dd09837dc1c90db63de8746f8b94f0f2f751c52a /typescript.html.markdown | |
parent | 064b5307f29b354e641386652586338f452ff951 (diff) | |
parent | 0d0b536b28d7f3ed8d35cc557142b15d52299526 (diff) |
Merge pull request #3051 from simsieg/patch-1
[typescript/en] Fix naming of constant
Diffstat (limited to 'typescript.html.markdown')
-rw-r--r-- | typescript.html.markdown | 2 |
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 |