Bug 1338572 - Fix typo in documentation. r?paolo and DONTBUILD draft
authorKartikaya Gupta <kgupta@mozilla.com>
Fri, 10 Feb 2017 11:55:21 -0500
changeset 481885 14a00698712687fa0216455950503006edae1d62
parent 481880 511093a0d82882d4b20f91b0287ad4b610c5225f
child 545308 c0b5ba273bb8520fa5352d5adff69887a87465a9
push id44941
push userkgupta@mozilla.com
push dateFri, 10 Feb 2017 16:56:10 +0000
reviewerspaolo
bugs1338572
milestone54.0a1
Bug 1338572 - Fix typo in documentation. r?paolo and DONTBUILD MozReview-Commit-ID: I17VWWxeogL
toolkit/modules/Task.jsm
--- a/toolkit/modules/Task.jsm
+++ b/toolkit/modules/Task.jsm
@@ -295,17 +295,17 @@ TaskImpl.prototype = {
   _isStarGenerator: false,
 
   /**
    * Main execution routine, that calls into the generator function.
    *
    * @param aSendResolved
    *        If true, indicates that we should continue into the generator
    *        function regularly (if we were waiting on a promise, it was
-   *        resolved). If true, indicates that we should cause an exception to
+   *        resolved). If false, indicates that we should cause an exception to
    *        be thrown into the generator function (if we were waiting on a
    *        promise, it was rejected).
    * @param aSendValue
    *        Resolution result or rejection exception, if any.
    */
   _run: function TaskImpl_run(aSendResolved, aSendValue) {
 
     try {