Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor repeated spelling error on asynchronous #2

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions storyboard/tutorials.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ <h2>
<div class='tutorial'>
<a href='/storyboard/tutorials/async'>
<h2>
Asyncronous Scenes
Asynchronous Scenes
</h2>
<p>
Learn how to work with asyncronous scenes in your storyboard.
Learn how to work with asynchronous scenes in your storyboard.
</p>
</a>
</div>
Expand Down
8 changes: 4 additions & 4 deletions storyboard/tutorials/async.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
</nav>
<article class='storyboard'>
<section class='tutorial'>
<h2>Asyncronous Scenes</h2>
<h2>Asynchronous Scenes</h2>
<p>
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.
</p>
Expand All @@ -81,7 +81,7 @@ <h2>Asyncronous Scenes</h2>
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.
Expand Down
2 changes: 1 addition & 1 deletion storyboard/tutorials/nesting.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h2>Nesting Storyboards</h2>
});</textarea><div class="helptext">You can edit the code in this block and rerun it.</div></div>
<a href='/storyboard/tutorials/async' style='float:left;'>
<h2>
&laquo; Asyncronous Scenes
&laquo; Asynchronous Scenes
</h2>
</a>
<a href='/storyboard/tutorials/nesting' style='text-align:right;'>
Expand Down
2 changes: 1 addition & 1 deletion storyboard/tutorials/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ <h4>Example:</h4>
</div>
<a href='/storyboard/tutorials/async' style='text-align:right;'>
<h2>
Asyncronous Scenes &raquo;
Asynchronous Scenes &raquo;
</h2>
</a>
</section>
Expand Down
2 changes: 1 addition & 1 deletion storyboard/tutorials/remotedata.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ <h2>Working with Remote Data</h2>
</div>
<a href='/storyboard/tutorials/async' style='float:left;'>
<h2>
&laquo; Asyncronous Scenes
&laquo; Asynchronous Scenes
</h2>
</a>
<a href='/storyboard/tutorials/events' style='text-align:right;'>
Expand Down