summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorreactormonk <hafnersimon@gmail.com>2015-06-28 12:13:40 -0500
committerreactormonk <hafnersimon@gmail.com>2015-06-28 12:13:40 -0500
commit46dfbe0695062dbe756b1b13c5422f880efac3f5 (patch)
tree455ba63a8a6ae72f32c0cdba2211ddbc8f566bef
parent17f852c769078f87e2889d5123f66c3bb6c58a4a (diff)
parentfd41293c06d5f0a4b4866c0257c80d4a66e83a60 (diff)
downloadNim-46dfbe0695062dbe756b1b13c5422f880efac3f5.tar.gz
Merge pull request #3013 from avsej/fix-doc-typo
Fix doc typo
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index efe557359..3d92c6f05 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -282,7 +282,7 @@ proc `==` *(x, y: char): bool {.magic: "EqCh", noSideEffect.}
 proc `==` *(x, y: bool): bool {.magic: "EqB", noSideEffect.}
   ## Checks for equality between two `bool` variables
 proc `==` *[T](x, y: set[T]): bool {.magic: "EqSet", noSideEffect.}
-  ## Checks for equality between two variables of type `set1
+  ## Checks for equality between two variables of type `set`
   ##
   ## .. code-block:: nim
   ##  var a = {1, 2, 2, 3} # duplication in sets is ignored