diff options
| author | Matias Niemelä | 2013-06-04 18:24:01 -0400 | 
|---|---|---|
| committer | Misko Hevery | 2013-06-06 22:13:43 -0700 | 
| commit | 4949586a76e0dd2baf47f519219011bd36dc52fa (patch) | |
| tree | 5a9a0851d3ccd9e052aae52dc8cec0c4d2f62b68 /docs/src | |
| parent | b36504577c538b745e6270e77d86af90285e2ae6 (diff) | |
| download | angular.js-4949586a76e0dd2baf47f519219011bd36dc52fa.tar.bz2 | |
fix(ngdoc): fix the node warnings that show up during build
Diffstat (limited to 'docs/src')
| -rw-r--r-- | docs/src/ngdoc.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/src/ngdoc.js b/docs/src/ngdoc.js index 679dfe15..c34b8475 100644 --- a/docs/src/ngdoc.js +++ b/docs/src/ngdoc.js @@ -43,7 +43,7 @@ function Doc(text, file, line) {    this.links = this.links || [];  }  Doc.METADATA_IGNORE = (function() { -  var words = require('fs').readFileSync(__dirname + '/ignore.words', 'utf8'); +  var words = fs.readFileSync(__dirname + '/ignore.words', 'utf8');    return words.toString().split(/[,\s\n\r]+/gm);  })(); | 
