0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Fix typo in code comment: propogation errata changed to propagation.

This commit is contained in:
Jason Sturges 2014-06-12 00:45:20 -05:00
parent 26d62fe775
commit 5d71fe66a3

View file

@ -23,7 +23,7 @@ function startGhost(options) {
.then(deferred.resolve) .then(deferred.resolve)
.otherwise(function (e) { .otherwise(function (e) {
// We don't return the rejected promise to stop // We don't return the rejected promise to stop
// the propogation of the rejection and just // the propagation of the rejection and just
// allow the user to manage what to do. // allow the user to manage what to do.
deferred.reject(e); deferred.reject(e);
}); });