Fixing a few typos. Changing all instances of "thennable" to

"thenable". No functional changes.
This commit is contained in:
Sean Hussey 2015-12-17 15:16:55 -05:00
parent 49b97a5e56
commit c1912d2726
10 changed files with 30 additions and 30 deletions

View file

@ -1980,7 +1980,7 @@
}
}
function notThennable(value, state, deferred) {
function notThenable(value, state, deferred) {
try {
if (state === RESOLVING && isFunction(onSuccess)) {
value = onSuccess(value)
@ -2017,7 +2017,7 @@
if (thenable) {
return doThen(value, deferred)
} else {
return notThennable(value, state, deferred)
return notThenable(value, state, deferred)
}
}
}