Fix a typo
authorHiroshige Umino yaotti <yaotti@qiita.com>
Sat, 10 May 2014 09:47:54 +0000 (18:47 +0900)
committerHiroshige Umino yaotti <yaotti@qiita.com>
Sat, 10 May 2014 09:47:54 +0000 (18:47 +0900)
docs/api/ipc-browser.md

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