about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-16 13:34:29 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-16 13:34:29 -0700
commitbaa85713a27ba132e5350c9e7c67bd048426c479 (patch)
tree60feaf5b325528c271253a49187e2c0f635fad7e
parent62ae069ef5bad4079c7f138c383210acf524dc6b (diff)
downloadmu-baa85713a27ba132e5350c9e7c67bd048426c479.tar.gz
3511
-rw-r--r--092socket.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/092socket.mu b/092socket.mu
index c60852be..27d12bde 100644
--- a/092socket.mu
+++ b/092socket.mu
@@ -15,9 +15,9 @@ container local-network [
 #
 # For reading, `receive-from-socket` will check for a
 # port-connection on the port parameter that's been passed in. If there's
-# no port-connection for that port, it will return nothing and log. If there
-# is a port-connection for that port, it will transmit the contents to the
-# passed in sink.
+# no port-connection for that port, it will return nothing and log an error.
+# If there is a port-connection for that port, it will transmit the contents
+# to the provided sink.
 #
 # For writing, `start-writing-socket` returns a sink connecting the
 # caller to the socket on the passed-in port.