diff options
author | Satish BD <bdsatish@gmail.com> | 2013-12-23 04:29:50 +0200 |
---|---|---|
committer | Satish BD <bdsatish@gmail.com> | 2013-12-23 04:29:50 +0200 |
commit | 033938a53a62399d45c5fd6fe9c4e798431c964f (patch) | |
tree | a2340bec81097aa0451701ad65d387dc7d12bad0 /tests | |
parent | 52a8226edda05f2d3baad791639a1c2fe7f103cc (diff) | |
download | Nim-033938a53a62399d45c5fd6fe9c4e798431c964f.tar.gz |
Correct the spelling of the word 'implicitly'
Diffstat (limited to 'tests')
-rw-r--r-- | tests/compile/ttempl3.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compile/ttempl3.nim b/tests/compile/ttempl3.nim index 361d11f6e..59be24624 100644 --- a/tests/compile/ttempl3.nim +++ b/tests/compile/ttempl3.nim @@ -2,7 +2,7 @@ template withOpenFile(f: expr, filename: string, mode: TFileMode, actions: stmt): stmt {.immediate.} = block: - # test that 'f' is implicitely 'injecting': + # test that 'f' is implicitly 'injecting': var f: TFile if open(f, filename, mode): try: |