Merge pull request #286 from yaotti/patch-1

Fix a typo
This commit is contained in:
Cheng Zhao 2014-05-10 21:17:07 +08:00
commit d98ba5f2b3

View file

@ -22,7 +22,7 @@ ipc.on('asynchronous-message', function(event, arg) {
ipc.on('synchronous-message', function(event, arg) { ipc.on('synchronous-message', function(event, arg) {
console.log(arg); // prints "ping" console.log(arg); // prints "ping"
event.returnValue = 'pong'. event.returnValue = 'pong';
}); });
``` ```