From fd163f1da49f1bfdd6b26692ead619999055172d Mon Sep 17 00:00:00 2001 From: Pascal Kuthe Date: Tue, 9 Apr 2024 23:12:03 +0200 Subject: [PATCH] Update helix-stdx/src/rope.rs Co-authored-by: Michael Davis --- helix-stdx/src/rope.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-stdx/src/rope.rs b/helix-stdx/src/rope.rs index 7cb005350dff6..2695555e39d6e 100644 --- a/helix-stdx/src/rope.rs +++ b/helix-stdx/src/rope.rs @@ -105,7 +105,7 @@ impl<'a> RopeSliceExt<'a> for RopeSlice<'a> { } } -/// copiefd froom std +// copied from std #[inline] const fn is_utf8_char_boundary(b: u8) -> bool { // This is bit magic equivalent to: b < 128 || b >= 192