diff --git a/src/strings/experimental.rs b/src/strings/experimental.rs index 5e19b9a..a2533e2 100644 --- a/src/strings/experimental.rs +++ b/src/strings/experimental.rs @@ -67,8 +67,8 @@ impl ShString { // SAFETY: // The first `len` bytes of `buf` are copied from a `&str`, so the first `len` - // bytes are valid UTF-8. We have already checked that `len` is thess than or equal - // to `Self::MAX_LEN`. + // bytes are valid UTF-8. We have already checked that `len` is thess than or + // equal to `Self::MAX_LEN`. Self::stack_from_raw_parts(buf, len) } },