Skip to content

Commit 71be505

Browse files
committed
Update README.md
Missing semi-colon in example code.
1 parent 4f49431 commit 71be505

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ JSONArray arguments = new JSONArray();
8686
arguments.put("first argument");
8787
JSONObject second = new JSONObject();
8888
second.put("dictionary", true);
89-
arguments.put(second)
89+
arguments.put(second);
9090
client.emit("hello", arguments);
9191
client.disconnect();
9292
```

0 commit comments

Comments
 (0)