about summary refs log tree commit diff stats
path: root/092socket.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-16 11:11:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-16 11:11:54 -0700
commitf03c9c05494997d4d1d64594fd357170f45d2da2 (patch)
tree4f23ed0b11ae785b9f3e2ece2c1238f0fb61bd17 /092socket.mu
parent0cdaca2c0c78d3f8df4ca78d5e445844f0145ae4 (diff)
downloadmu-f03c9c05494997d4d1d64594fd357170f45d2da2.tar.gz
3507
Diffstat (limited to '092socket.mu')
-rw-r--r--092socket.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/092socket.mu b/092socket.mu
index 22d8a342..250afcf6 100644
--- a/092socket.mu
+++ b/092socket.mu
@@ -13,11 +13,11 @@ container local-network [
 # `start-reading-socket` and `start-writing-socket`, add port-connections to
 # the local-network.
 #
-# For reading, `transmit-from-socket` will check for a
+# 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-connectin 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. If there
+# is a port-connection for that port, it will transmit the contents to the
+# passed in sink.
 #
 # For writing, `start-writing-socket` returns a sink connecting the
 # caller to the socket on the passed-in port.