summary refs log tree commit diff stats
path: root/lib/unicode.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicode.nim')
-rw-r--r--lib/unicode.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unicode.nim b/lib/unicode.nim
index 6829ede50..de3b80c94 100644
--- a/lib/unicode.nim
+++ b/lib/unicode.nim
@@ -1,7 +1,7 @@
 #
 #
 #            Nimrod's Runtime Library
-#        (c) Copyright 2006 Andreas Rumpf
+#        (c) Copyright 2008 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
@@ -9,7 +9,7 @@
 
 type
   TUniChar* = int32 ## type that can hold any Unicode character
-  TUniChar16* = int16 ##
+  TUniChar16* = int16 ## 16 bit Unicode character
   
 template ones(n) = ((1 shl n)-1)