summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-08-27 20:52:47 -0700
committerAdam Bard <github@adambard.com>2013-08-27 20:52:47 -0700
commit9895f1ade9b792ebeb32834415570d53804426ad (patch)
tree8bac69eab3d6ba0f9f82a990fcfaba1396d41158
parent0996e72768d3b58c4ccece2759db1fd76ebafbfc (diff)
parentf88b0ba326f40a9e14b24438ecc1963d0138973f (diff)
Merge pull request #277 from mbuettner/patch-1
Fixed typo in Julia document
-rw-r--r--julia.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/julia.html.markdown b/julia.html.markdown
index 1023e303..cf3a464b 100644
--- a/julia.html.markdown
+++ b/julia.html.markdown
@@ -147,7 +147,7 @@ push!(a,3) #=> [1,2,4,3]
append!(a,b) #=> [1,2,4,3,4,5,6]
# Remove from the end with pop
-pop!(a) #=> 6 and b is now [4,5]
+pop!(b) #=> 6 and b is now [4,5]
# Let's put it back
push!(b,6) # b is now [4,5,6] again.