summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/tanya/async/loop.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/tanya/async/loop.d b/source/tanya/async/loop.d
index 9031a83..17429d4 100644
--- a/source/tanya/async/loop.d
+++ b/source/tanya/async/loop.d
@@ -36,11 +36,11 @@
* auto address = new InternetAddress("127.0.0.1", cast(ushort) 8192);
* version (Windows)
* {
- * auto sock = new OverlappedStreamSocket(AddressFamily.INET)
+ * auto sock = new OverlappedStreamSocket(AddressFamily.INET);
* }
* else
* {
- * auto sock = new StreamSocket(AddressFamily.INET)
+ * auto sock = new StreamSocket(AddressFamily.INET);
* sock.blocking = false;
* }
*