From 6c93f7fb15e5848de48daefe5998139734333dd9 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 4 Feb 2017 22:45:32 -0800 Subject: [PATCH] fixed documentation typo Fixes #19 --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index b3dcb17..4434a25 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -131,7 +131,7 @@ that it will lose the ability to address individual clients. def enter_room(sid, data): sio.enter_room(sid, data['room']) - @sio.on('enter room') + @sio.on('leave room') def leave_room(sid, data): sio.leave_room(sid, data['room'])