Skip to content

Commit b926dbf

Browse files
Fix fs module typo in README.md
Was assigning it to 'express' rather than 'fs'. Reported by @cguanzon in issue saymedia#14.
1 parent b9714eb commit b926dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bootstrap code, using [express](http://expressjs.com/):
2929
```js
3030
var angularserver = require('angularjs-server');
3131
var express = require('express');
32-
var express = require('fs');
32+
var fs = require('fs');
3333

3434
// The main index.html file for your application, that you'd normally serve to browsers to start the app.
3535
// This should have any script tags for your application removed from it, as they will be added separately.

0 commit comments

Comments
 (0)