Unnamed repository; edit this file 'description' to name the repository.
Merge pull request rust-analyzer/smol_str#59 from MultisampledNight/fix-missing-backtick
| -rw-r--r-- | lib/smol_str/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smol_str/src/lib.rs b/lib/smol_str/src/lib.rs index 5f0431d419..692803e447 100644 --- a/lib/smol_str/src/lib.rs +++ b/lib/smol_str/src/lib.rs @@ -19,7 +19,7 @@ use core::{ /// A `SmolStr` is a string type that has the following properties: /// -/// * `size_of::<SmolStr>() == 24 (therefor == size_of::<String>() on 64 bit platforms) +/// * `size_of::<SmolStr>() == 24` (therefor `== size_of::<String>()` on 64 bit platforms) /// * `Clone` is `O(1)` /// * Strings are stack-allocated if they are: /// * Up to 23 bytes long |