summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2015-06-05 12:48:49 +0200
committerAndreas Rumpf <rumpf_a@web.de>2015-06-05 12:48:49 +0200
commitbf70a137f01b6cc885d07e982a372670e53cd123 (patch)
treeb6bc68423a43a96ddfa9b9196644684a6792ed36
parent16da925a0aec91525fd124a238698d010d77e81d (diff)
parent2dcaa75e2dc9b607fab54ebcb744d31220f99322 (diff)
downloadNim-bf70a137f01b6cc885d07e982a372670e53cd123.tar.gz
Merge pull request #2873 from nanoant/devel
Fixup: Reverted TZipFileStream name change
-rw-r--r--lib/impure/zipfiles.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/zipfiles.nim b/lib/impure/zipfiles.nim
index d66d7d7f3..d8903f5c1 100644
--- a/lib/impure/zipfiles.nim
+++ b/lib/impure/zipfiles.nim
@@ -114,7 +114,7 @@ type
     atEnd: bool
 
   PZipFileStream* =
-    ref ZipFileStream ## a reader stream of a file within a zip archive
+    ref TZipFileStream ## a reader stream of a file within a zip archive
 
 proc fsClose(s: Stream) = zip_fclose(PZipFileStream(s).f)
 proc fsAtEnd(s: Stream): bool = PZipFileStream(s).atEnd