Skip to content

Commit 701eb24

Browse files
committed
small fixes
1 parent c966e77 commit 701eb24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

threading.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
version = "0.1.0"
44
author = "Araq"
5-
description = "A new awesome nimble package"
5+
description = "New atomics, thread primitives, channels and atomic refcounting for --gc:arc/orc."
66
license = "MIT"
77

88
# Dependencies

threading/channels.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runnableExamples("--threads:on --gc:orc"):
3131
# Channels are generic, and they include support for passing objects between
3232
# threads.
3333
# Note that isolated data passed through channels is moved around.
34-
var chan = newChannel[string]()
34+
var chan = newChan[string]()
3535

3636
# This proc will be run in another thread using the threads module.
3737
proc firstWorker() =

0 commit comments

Comments
 (0)