Skip to content

Commit

Permalink
Fix typo in the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
moll committed Jun 8, 2016
1 parent 5f14d84 commit 2ee831e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ so selectively, `connect` is given the `options` object that was given to

```javascript
mitm.on("connect", function(socket, opts) {
if (opts.host == "sql.example.org" && opts.port = 5432) socket.bypass()
if (opts.host == "sql.example.org" && opts.port == 5432) socket.bypass()
})
```

Expand Down

0 comments on commit 2ee831e

Please sign in to comment.