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