aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/writer.js
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/writer.js')
-rw-r--r--docs/src/writer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/writer.js b/docs/src/writer.js
index 85ca6c5a..7db55d3d 100644
--- a/docs/src/writer.js
+++ b/docs/src/writer.js
@@ -11,7 +11,7 @@ exports.output = function(file, content) {
var fullPath = OUTPUT_DIR + file;
var dir = parent(fullPath);
return Q.when(exports.makeDir(dir), function(error) {
- qfs.write(fullPath,exports.toString(content));
+ qfs.write(fullPath, exports.toString(content));
});
};