From ca47a0fc21277c9a868f600487e7e7dbc385662a Mon Sep 17 00:00:00 2001 From: PavelVozenilek Date: Tue, 22 Jul 2014 10:33:14 +0200 Subject: [PATCH] typo fix --- lib/system.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system.nim b/lib/system.nim index 2fb08563aa..6e5d5ef2d8 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -783,7 +783,7 @@ proc contains*[T](s: TSlice[T], value: T): bool {.noSideEffect, inline.} = result = s.a <= value and value <= s.b template `in` * (x, y: expr): expr {.immediate.} = contains(y, x) - ## Suger for contains + ## Sugar for contains ## ## .. code-block:: Nimrod ## assert(1 in (1..3) == true)