Declare one variable per statement in protocol code example

This commit is contained in:
Thomas Tuts 2015-06-09 18:10:02 +02:00
parent bd1fd9680f
commit 2f4333b852

View file

@ -7,8 +7,8 @@ An example of implementing a protocol that has the same effect with the
`file://` protocol: `file://` protocol:
```javascript ```javascript
var app = require('app'), var app = require('app');
path = require('path'); var path = require('path');
app.on('ready', function() { app.on('ready', function() {
var protocol = require('protocol'); var protocol = require('protocol');