whitespace

This commit is contained in:
AJ ONeal 2019-10-28 03:52:38 -06:00
parent 00e9d96f8b
commit 3f437c6ebb
3 changed files with 9 additions and 9 deletions

View File

@ -135,7 +135,7 @@ later, if you need them.
`server.js`:
```bash
```js
require("greenlock-express")
.init(getConfig)
.serve(worker);
@ -143,14 +143,14 @@ require("greenlock-express")
function getConfig() {
return {
// uses name and version as part of the ACME client user-agent
// uses author as the contact for support notices
// uses author as the contact for support notices
package: require("./package.json")
};
}
function worker(server) {
// Works with any Node app (Express, etc)
var app = require('my-express-app.js');
var app = require("my-express-app.js");
server.serveApp(app);
}
```

View File

@ -32,5 +32,5 @@ if (major < 11 || (11 === major && minor < 2)) {
if (shouldUpgrade) {
console.warn("Warning: Please upgrade to node v11.2.0 or greater.");
console.warn();
console.warn();
}

View File

@ -75,11 +75,11 @@ Master._spawnWorkers = function(opts, greenlock) {
}
}
cluster.on('exit', function () {
setTimeout(function () {
process.exit(3);
}, 100);
});
cluster.on("exit", function() {
setTimeout(function() {
process.exit(3);
}, 100);
});
var workers = range(numWorkers);
function next() {