1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-20 13:31:43 +02:00

Merge pull request #277 from mbuettner/patch-1

Fixed typo in Julia document
This commit is contained in:
Adam Bard
2013-08-27 20:52:47 -07:00

View File

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