TSlice -> Slice in the tut1

This commit is contained in:
Simon Hafner
2015-01-13 01:13:34 -06:00
parent 0125c5f3e4
commit 5b9557c228

View File

@@ -1313,9 +1313,9 @@ Slices
------
Slices look similar to subranges types in syntax but are used in a different
context. A slice is just an object of type TSlice which contains two bounds,
context. A slice is just an object of type Slice which contains two bounds,
`a` and `b`. By itself a slice is not very useful, but other collection types
define operators which accept TSlice objects to define ranges.
define operators which accept Slice objects to define ranges.
.. code-block:: nim