summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorajimu <ajimu@users.noreply.github.com>2016-03-23 13:50:24 -0500
committerajimu <ajimu@users.noreply.github.com>2016-03-23 13:50:24 -0500
commitcae73192afb444010553e4ed9035562d477496a9 (patch)
treeb705e842a6e8efca70e6d6e16a7322007a907662
parent722a7766d8048d44773eea842e720d1508d6a430 (diff)
[nim/en] Correct syntax highlighting
The language was changed to JavaScript in [this commit](https://github.com/adambard/learnxinyminutes-docs/commit/f3b10beb01795bf7513ec8d06c9e90ab98df7a83).
-rw-r--r--nim.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/nim.html.markdown b/nim.html.markdown
index 4901ebfe..5d00304d 100644
--- a/nim.html.markdown
+++ b/nim.html.markdown
@@ -11,7 +11,7 @@ that gives the programmer power without compromises on runtime efficiency.
Nim is efficient, expressive, and elegant.
-```javascript
+```nim
var # Declare (and assign) variables,
letter: char = 'n' # with or without type annotations
lang = "N" & "im"