From 7b3ab2727f2edd90706fb4b8a2778342854c7f5e Mon Sep 17 00:00:00 2001 From: Andrew Owen Date: Mon, 26 Jul 2021 00:11:05 -0600 Subject: [PATCH] Fix copy/paste mistake in ev/take docs --- src/core/ev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ev.c b/src/core/ev.c index 5a39e7c5..799c7bb6 100644 --- a/src/core/ev.c +++ b/src/core/ev.c @@ -735,7 +735,7 @@ JANET_CORE_FN(cfun_channel_push, JANET_CORE_FN(cfun_channel_pop, "(ev/take channel)", - "Write a value to a channel, suspending the current fiber if the channel is full." + "Read from a channel, suspending the current fiber if no value is available." ) { janet_fixarity(argc, 1); JanetChannel *channel = janet_getabstract(argv, 0, &ChannelAT);