From 23df5f425f52cf3aee76ea36ed25fa6296687cc4 Mon Sep 17 00:00:00 2001 From: Pantonshire Date: Tue, 12 Jul 2022 14:50:13 +0100 Subject: [PATCH] Minor formatting fix --- src/strings/experimental.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) } },