diff options
author | Sam van Kampen <sam@tehsvk.net> | 2015-10-28 22:37:54 +0100 |
---|---|---|
committer | Sam van Kampen <sam@tehsvk.net> | 2015-10-28 22:37:54 +0100 |
commit | 4f2a9eb51a4084512f87246712cb592a60c5523c (patch) | |
tree | 3364b6f208499044a8397a71340df1f5b5f4226a | |
parent | 80242383bc38edac9e0e44a32c1f8f794a01017d (diff) |
Fix incorrect word (koffie -> vloeistof)
-rw-r--r-- | nl-nl/coffeescript-nl.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nl-nl/coffeescript-nl.html.markdown b/nl-nl/coffeescript-nl.html.markdown index dc0b1e19..bb46eb9b 100644 --- a/nl-nl/coffeescript-nl.html.markdown +++ b/nl-nl/coffeescript-nl.html.markdown @@ -43,7 +43,7 @@ getal = -42 if tegengestelde #=> if(tegengestelde) { getal = -42; } kwadraat = (x) -> x * x #=> var kwadraat = function(x) { return x * x; } vul = (houder, vloeistof = "koffie") -> - "Nu de #{houder} met #{koffie} aan het vullen..." + "Nu de #{houder} met #{vloeistof} aan het vullen..." #=>var vul; # #vul = function(houder, vloeistof) { |