Replace typo 'required' with 'require'

This commit is contained in:
Ben Creasy
2015-02-25 11:06:30 -08:00
parent 4e3f0c1083
commit 9f0ae37903

View File

@@ -7,7 +7,7 @@ The `app.mountpath` property is the path pattern(s) on which a sub app was mount
</div>
~~~js
var express = required('express');
var express = require('express');
var app = express(); // the main app
var admin = express(); // the sub app