Просмотр исходного кода

Fixed a typo in lists.html for the push/pop section

Steven Hall 8 лет назад
Родитель
Сommit
4cdab219fc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/lists.html

+ 1 - 1
docs/lists.html

@@ -118,7 +118,7 @@
 			</code></pre>
 			</code></pre>
 			
 			
 			<h4 class="section-h4">List as a stack</h4>
 			<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">
 			<pre><code class="swift">
 	var list = [10,20,30,40,50];
 	var list = [10,20,30,40,50];
 	list.push(100);		// add 100 to the list
 	list.push(100);		// add 100 to the list