mirror of
https://github.com/AmberGraceRblx/luau-promise.git
synced 2025-04-24 23:50:03 +00:00
Fix comment grammar
This commit is contained in:
parent
3ca1885cc2
commit
bafeb68973
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ function Promise:andThen(successHandler, failureHandler)
|
||||||
end
|
end
|
||||||
|
|
||||||
if self._status == Promise.Status.Started then
|
if self._status == Promise.Status.Started then
|
||||||
-- If we haven't resolved yet, put ourselves into the queue
|
-- If we haven't resolved yet, put ourself into the queue
|
||||||
table.insert(self._queuedResolve, successCallback)
|
table.insert(self._queuedResolve, successCallback)
|
||||||
table.insert(self._queuedReject, failureCallback)
|
table.insert(self._queuedReject, failureCallback)
|
||||||
elseif self._status == Promise.Status.Resolved then
|
elseif self._status == Promise.Status.Resolved then
|
||||||
|
|
Loading…
Reference in a new issue