coreybutler / node-windows

Windows support for Node.JS scripts (daemons, eventlog, UAC, etc).
Other
2.81k stars 356 forks source link

redundant brackets in README.md #141

Closed cuteason closed 7 years ago

cuteason commented 7 years ago

The redundant brackets exist in the example given in the [What Makes node-windows Services Unique?] section.

var svc = new Service({
  name:'Hello World',
  description: 'The nodejs.org example web server.',
  script: 'C:\\path\\to\\helloworld.js'), <- There it is.
  wait: 2,
  grow: .5
});