diff options
| author | Vojta Jina | 2011-09-01 16:16:01 +0200 | 
|---|---|---|
| committer | Vojta Jina | 2011-09-08 23:00:59 +0200 | 
| commit | 4b4292edb86d34067a2babb9f572a3641dd1d2a7 (patch) | |
| tree | bc2c4901a6d377a599406ef562fe2b311b5000e1 /docs/src/writer.js | |
| parent | 292d5d1421108c239d3270c22c49a9ccd1eea571 (diff) | |
| download | angular.js-4b4292edb86d34067a2babb9f572a3641dd1d2a7.tar.bz2 | |
style: fix some missing semi-colons and spaces, typos
Diffstat (limited to 'docs/src/writer.js')
| -rw-r--r-- | docs/src/writer.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/src/writer.js b/docs/src/writer.js index 5aa8f566..85d797ea 100644 --- a/docs/src/writer.js +++ b/docs/src/writer.js @@ -8,14 +8,14 @@ var Q = require('qq');  var OUTPUT_DIR = "build/docs/";  var fs = require('fs'); -exports.output = function(file, content){ +exports.output = function(file, content) {    console.log('writing ', file);    var fullPath = OUTPUT_DIR + file;    var dir = parent(fullPath);    return Q.when(exports.makeDir(dir), function(error) {      qfs.write(fullPath,exports.toString(content));    }); -} +};  //recursively create directory  exports.makeDir = function (path) { | 
