Browse Source

Merge pull request #71 from hallzy/fix_typo_in_docs

Fixed a typo in lists.html for the push/pop section
Marco Bambini 8 years ago
parent
commit
0ae157c9ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/lists.html

+ 1 - 1
docs/lists.html

@@ -118,7 +118,7 @@
 			</code></pre>
 			
 			<h4 class="section-h4">List as a stack</h4>
-			<p>The List class implements the push/pop methods as a convenient way to threat a list as a stack:</p> 
+			<p>The List class implements the push/pop methods as a convenient way to treat a list as a stack:</p> 
 			<pre><code class="swift">
 	var list = [10,20,30,40,50];
 	list.push(100);		// add 100 to the list