From 9199d0df0af8078dda7ff929860f7580565a8752 Mon Sep 17 00:00:00 2001 From: Thomas Tuts Date: Tue, 9 Jun 2015 18:14:06 +0200 Subject: [PATCH] Add missing semicolon in webview tag documentation --- docs/api/web-view-tag.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/web-view-tag.md b/docs/api/web-view-tag.md index 1198f212e25f..cbbd6205c391 100644 --- a/docs/api/web-view-tag.md +++ b/docs/api/web-view-tag.md @@ -448,7 +448,7 @@ webview.send('ping'); var ipc = require('ipc'); ipc.on('ping', function() { ipc.sendToHost('pong'); -}) +}); ``` ### crashed