Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | lib/text-size/src/range.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/text-size/src/range.rs b/lib/text-size/src/range.rs index c06c19dfe4..ae3b29c152 100644 --- a/lib/text-size/src/range.rs +++ b/lib/text-size/src/range.rs @@ -35,7 +35,7 @@ pub struct TextRange { impl fmt::Debug for TextRange { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - write!(f, "[{}..{})", self.start().raw, self.end().raw) + write!(f, "{}..{}", self.start().raw, self.end().raw) } } |