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-07 13:34:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-07 13:37:52 -0700
commitbc56f30f349e29ac8e4a9ddc5fb5d4a1758a4427 (patch)
tree25301dca59e906a59fd7d24641e3574189d11145 /092socket.mu
parent5c57c75692e9e976a70537576d203569608aade2 (diff)
downloadmu-bc56f30f349e29ac8e4a9ddc5fb5d4a1758a4427.tar.gz
3465
Fix a few names in comments.
Diffstat (limited to '092socket.mu')
-rw-r--r--092socket.mu13
1 files changed, 8 insertions, 5 deletions
diff --git a/092socket.mu b/092socket.mu
index 1e4f8c3c..ab16779c 100644
--- a/092socket.mu
+++ b/092socket.mu
@@ -1,14 +1,17 @@
-# Wrappers around socket primitives that take a 'network-interface' object and
-# are thus easier to test.
-# The current semantics of fake port-connections don't match UNIX socket ones, but we'll improve them as we learn more.
+# Wrappers around socket primitives that take a 'local-network' object and are
+# thus easier to test.
+#
+# The current semantics of fake port-connections don't match UNIX socket ones,
+# but we'll improve them as we learn more.
+
 container local-network [
   data:&:@:port-connection
 ]
 
 # Port connections represent connections to ports on localhost.
 # Before passing a local-network object to network functions
-# `start-reading` and `start-writing`, add port-connections to the
-# 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
 # port-connection on the port parameter that's been passed in. If there's