Skip to content
This repository has been archived by the owner on Sep 9, 2019. It is now read-only.

Commit

Permalink
readme: fix missing require in example
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan1234 authored and mscdex committed Nov 15, 2015
1 parent 9226162 commit 471ffe7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ http.createServer(function(req, res) {
```javascript
var http = require('http'),
path = require('path'),
os = require('os');
os = require('os'),
fs = require('fs');

var Busboy = require('busboy');

Expand Down

0 comments on commit 471ffe7

Please sign in to comment.