fix typo Promise -> PromiseA (for node 0.10.x)

このコミットが含まれているのは:
AJ ONeal 2015-01-14 05:38:23 -05:00
コミット b7d7de134f
1個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -224,7 +224,7 @@ function copyfs(blogdir, files) {
dirpaths[pathname] = true;
return Promise.resolve();
return PromiseA.resolve();
}).then(function () {
// TODO is it better to do this lazy-like or as a batch?
// I figure as batch when there may be hundreds of files,
@ -285,7 +285,7 @@ function putfs(blogdir, files) {
dirpaths[pathname] = true;
return Promise.resolve();
return PromiseA.resolve();
}).then(function () {
// TODO is it better to do this lazy-like or as a batch?
// I figure as batch when there may be hundreds of files,