summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2016-10-08 19:43:40 +0200
committerEugen Wissner <belka@caraus.de>2016-10-08 19:43:40 +0200
commit79a7b840f72fc329488fc8f613eb6e3b1fb5061d (patch)
tree412c4a32e799f59950df9c2dea9f4b5e6f96a418
parent6b093cd5fac7dfa783bd82d4570a21f24cac29ab (diff)
downloadtanya-79a7b840f72fc329488fc8f613eb6e3b1fb5061d.tar.gz
Fix missing semicolons in echo server examplev0.1.0
-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;
* }
*