From 775953b11edef2cbc68823551ee38c3034d858b4 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Wed, 10 Jun 2015 14:04:15 -0700 Subject: [PATCH] Fix indices in Line::range doc comment --- components/layout/inline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/inline.rs b/components/layout/inline.rs index 2ac426776a0..6379391ddc8 100644 --- a/components/layout/inline.rs +++ b/components/layout/inline.rs @@ -90,7 +90,7 @@ pub struct Line { /// /// 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,' | ' yes' | 'I do.' | pub range: Range,