Skip to content

Commit da9de70

Browse files
committed
[docs] fix syntax highlighting
1 parent 38e6d7c commit da9de70

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ In addition, every stage emits a corresponding event so introspection during the
4747

4848
#### Setup a basic stand-alone proxy server
4949

50+
```js
5051
var http = require('http'),
5152
caronte = require('caronte');
5253
//
@@ -62,6 +63,7 @@ http.createServer(function (req, res) {
6263
res.write('request successfully proxied!' + '\n' + JSON.stringify(req.headers, true, 2));
6364
res.end();
6465
}).listen(9000);
66+
```
6567

6668
#### Setup a stand-alone proxy server with custom server logic
6769

0 commit comments

Comments
 (0)