diff options
Diffstat (limited to 'Doc/ref.tex')
-rw-r--r-- | Doc/ref.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref.tex b/Doc/ref.tex index 0edec66..875659e 100644 --- a/Doc/ref.tex +++ b/Doc/ref.tex @@ -674,7 +674,7 @@ the numbers $0, 1, \ldots, n-1$. Element \verb\i\ of sequence \index{subscription} Sequences also support slicing: \verb\a[i:j]\ selects all elements -with index $k$ such that $i < k < j$. When used as an expression, +with index $k$ such that $i <= k < j$. When used as an expression, a slice is a sequence of the same type --- this implies that the index set is renumbered so that it starts at 0 again. \index{slicing} |