aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 813090a..3c5bd9a 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ luarocks install --server=http://rocks.cogarr.net lua-nng
local s2 = nng.pair1_open()
s1:listen("ipc:///tmp/pair.ipc")
- s2:dial("ipc://tmp/pair.ipc")
+ s2:dial("ipc:///tmp/pair.ipc")
s2:send("hello")
print(s1:recv()) --prints "hello"