- 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.
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
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 »
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