Created
March 2, 2012 09:44
-
-
Save rmehner/1957352 to your computer and use it in GitHub Desktop.
PubSub typo patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/js/vendor/pubsub.js b/js/vendor/pubsub.js | |
| index ed8ecc4..7d90e2b 100644 | |
| --- a/js/vendor/pubsub.js | |
| +++ b/js/vendor/pubsub.js | |
| @@ -28,7 +28,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
| * | |
| * In order to not have surprising behaviour where the execution chain generates more than one message, | |
| * publication of messages with PubSub are done asyncronously (this also helps keep your code responsive, by | |
| - * dividing work into smaller chunkcs, allowing the event loop to do it's business). | |
| + * dividing work into smaller chunks, allowing the event loop to do it's business). | |
| * | |
| * If you're feeling adventurous, you can also use syncronous message publication, which can lead to some very | |
| * confusing conditions, when one message triggers publication of another message in the same execution chain. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment