Skip to content

Commit

Permalink
fix examples in README
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonOehlman committed Jun 14, 2020
1 parent 08e005f commit 7f97a69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following example shows how the `ngineer` module can be used to scaffold and

```js
const async = require('async');
const nginx = require('..')(__dirname + '/nginx', {
const nginx = require('ngineer')(__dirname + '/nginx', {
port: 8080
});

Expand All @@ -42,7 +42,7 @@ The above example proxies a request from <http://localhost:8080/ngineer> through
const async = require('async');
const express = require('express');

const nginx = require('..')(__dirname + '/nginx', {
const nginx = require('ngineer')(__dirname + '/nginx', {
port: 8080
});

Expand Down

0 comments on commit 7f97a69

Please sign in to comment.