From 94640a0f43f4bf289b5fe2a6db130fee7240ad7c Mon Sep 17 00:00:00 2001 From: Tim Ruffles Date: Mon, 13 Feb 2017 22:52:07 +0000 Subject: [PATCH] [docs] Update the wording to match the code example (#2853) --- docs/API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/API.md b/docs/API.md index 97b40d96c8..5bad8c860e 100644 --- a/docs/API.md +++ b/docs/API.md @@ -413,7 +413,7 @@ socket.emit('hello', 'world'); socket.emit('with-binary', 1, '2', { 3: '4', 5: new Buffer(6) }); ``` -The `ack` argument is optional and will be called with the server answer. +The `ack` argument is optional and will be called with the client's answer. ```js var io = require('socket.io')();