Fix indices in Line::range doc comment

This commit is contained in:
Matt Brubeck 2015-06-10 14:04:15 -07:00
parent 1c636dd2d0
commit 775953b11e

View file

@ -90,7 +90,7 @@ pub struct Line {
/// ///
/// The ranges that describe these lines would be: /// The ranges that describe these lines would be:
/// ///
/// | [0, 2) | [2, 3) | [3, 4) | [4, 5) | /// | [0, 2) | [2, 3) | [3, 5) | [5, 6) |
/// |----------|-------------|-------------|----------| /// |----------|-------------|-------------|----------|
/// | 'I like' | 'truffles,' | '<img> yes' | 'I do.' | /// | 'I like' | 'truffles,' | '<img> yes' | 'I do.' |
pub range: Range<FragmentIndex>, pub range: Range<FragmentIndex>,