diff options
author | ajimu <ajimu@users.noreply.github.com> | 2016-03-23 13:50:24 -0500 |
---|---|---|
committer | ajimu <ajimu@users.noreply.github.com> | 2016-03-23 13:50:24 -0500 |
commit | cae73192afb444010553e4ed9035562d477496a9 (patch) | |
tree | b705e842a6e8efca70e6d6e16a7322007a907662 /nim.html.markdown | |
parent | 722a7766d8048d44773eea842e720d1508d6a430 (diff) |
[nim/en] Correct syntax highlighting
The language was changed to JavaScript in [this commit](https://github.com/adambard/learnxinyminutes-docs/commit/f3b10beb01795bf7513ec8d06c9e90ab98df7a83).
Diffstat (limited to 'nim.html.markdown')
-rw-r--r-- | nim.html.markdown | 2 |
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" |