From Jason Turner

[cons.slice]

Diff to HTML by rtfpessoa

tmp/tmph9dma2rm/{from.md → to.md} RENAMED
@@ -9,8 +9,8 @@ slice(const slice&);
9
  The default constructor is equivalent to `slice(0, 0, 0)`. A default
10
  constructor is provided only to permit the declaration of arrays of
11
  slices. The constructor with arguments for a slice takes a start,
12
  length, and stride parameter.
13
 
14
- `slice(3, 8, 2)` constructs a slice which selects elements 3, 5, 7, ...
15
- 17 from an array.
16
 
 
9
  The default constructor is equivalent to `slice(0, 0, 0)`. A default
10
  constructor is provided only to permit the declaration of arrays of
11
  slices. The constructor with arguments for a slice takes a start,
12
  length, and stride parameter.
13
 
14
+ [*Example 1*: `slice(3, 8, 2)` constructs a slice which selects
15
+ elements 3, 5, 7, ... 17 from an array. — *end example*]
16