summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--julia.html.markdown1
1 files changed, 0 insertions, 1 deletions
diff --git a/julia.html.markdown b/julia.html.markdown
index 36c57b2a..665b4fd3 100644
--- a/julia.html.markdown
+++ b/julia.html.markdown
@@ -193,7 +193,6 @@ a = [1:5] # => 5-element Int64 Array: [1,2,3,4,5]
# You can look at ranges with slice syntax.
a[1:3] # => [1, 2, 3]
-a[2:] # => [2, 3, 4, 5]
a[2:end] # => [2, 3, 4, 5]
# Remove elements from an array by index with splice!