From 3281a892637c62c720888635cf9b716ce5044ad5 Mon Sep 17 00:00:00 2001 From: colemanserious Date: Tue, 11 Mar 2014 09:40:27 -0400 Subject: [PATCH 1/5] Update async.html Fix misspell of asynchronous --- storyboard/tutorials/async.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/storyboard/tutorials/async.html b/storyboard/tutorials/async.html index 2af6033..b5a574b 100644 --- a/storyboard/tutorials/async.html +++ b/storyboard/tutorials/async.html @@ -52,10 +52,10 @@
-

Asyncronous Scenes

+

Asynchronous Scenes

- More often than not, a lot of your code will be asyncronous by nature. As you know - in JavaScript, this can mean your function actually exists before the asyncronous + More often than not, a lot of your code will be asynchronous by nature. As you know + in JavaScript, this can mean your function actually exists before the asynchronous code is done running! If you are trying to chain behavior, this can be a problem because things will get out of sync pretty fast.

@@ -81,7 +81,7 @@

Asyncronous Scenes

loading : {}, a : { enter : function() { - // declare this function is asyncronous! + // declare this function is asynchronous! // Calling this.async returns a _function_ // you should then call when you're done with all // your work. From 63f5317c2a3c8f99d85373d86708a576a905a615 Mon Sep 17 00:00:00 2001 From: colemanserious Date: Tue, 11 Mar 2014 09:41:47 -0400 Subject: [PATCH 2/5] Update tutorials.html Fix misspell of asynchronous --- storyboard/tutorials.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storyboard/tutorials.html b/storyboard/tutorials.html index e58b4f9..4fe0016 100644 --- a/storyboard/tutorials.html +++ b/storyboard/tutorials.html @@ -66,10 +66,10 @@

From da04b77bfce5c88d6341c5d707d8e87f79e2b96d Mon Sep 17 00:00:00 2001 From: colemanserious Date: Tue, 11 Mar 2014 09:42:43 -0400 Subject: [PATCH 3/5] Update nesting.html Fixed misspelling of asynchronous --- storyboard/tutorials/nesting.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storyboard/tutorials/nesting.html b/storyboard/tutorials/nesting.html index b39b3f0..47063d0 100644 --- a/storyboard/tutorials/nesting.html +++ b/storyboard/tutorials/nesting.html @@ -139,7 +139,7 @@

Nesting Storyboards

});
You can edit the code in this block and rerun it.

- « Asyncronous Scenes + « Asynchronous Scenes

From 9b6f8efa2471907d4b2a159b63715cf40b05e57b Mon Sep 17 00:00:00 2001 From: colemanserious Date: Tue, 11 Mar 2014 09:43:21 -0400 Subject: [PATCH 4/5] Update remotedata.html Fixed spelling of asynchronous --- storyboard/tutorials/remotedata.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storyboard/tutorials/remotedata.html b/storyboard/tutorials/remotedata.html index c6b2f0e..a83e524 100644 --- a/storyboard/tutorials/remotedata.html +++ b/storyboard/tutorials/remotedata.html @@ -113,7 +113,7 @@

Working with Remote Data

- « Asyncronous Scenes + « Asynchronous Scenes

From d0dbc3f1e5d173ed078cdec0c975d7d4dc12f1ed Mon Sep 17 00:00:00 2001 From: colemanserious Date: Tue, 11 Mar 2014 09:43:59 -0400 Subject: [PATCH 5/5] Update quickstart.html Fixed misspelling. --- storyboard/tutorials/quickstart.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storyboard/tutorials/quickstart.html b/storyboard/tutorials/quickstart.html index e159915..3039931 100644 --- a/storyboard/tutorials/quickstart.html +++ b/storyboard/tutorials/quickstart.html @@ -228,7 +228,7 @@

Example:

- Asyncronous Scenes » + Asynchronous Scenes »