From 66622fffb31bd6ff33b5e0a1d4eede616a1b846d Mon Sep 17 00:00:00 2001 From: Erik Date: Mon, 8 Jun 2015 20:24:57 -0400 Subject: [PATCH] I hope Swift fixes the case where I use variadics, because this ugly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0345805..e34ee57 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ socket.on("currentAmount") {data, ack in socket.emit("update", ["amount": cur + 2.50]) } - ack?("Got your currentAmount", "dude") + ack?(["Got your currentAmount", "dude"]) } }