Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--lib/smol_str/Cargo.toml2
-rw-r--r--lib/smol_str/README.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/smol_str/Cargo.toml b/lib/smol_str/Cargo.toml
index aa729865aa..c7a646e527 100644
--- a/lib/smol_str/Cargo.toml
+++ b/lib/smol_str/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "smol_str"
-version = "0.1.25"
+version = "0.2.0"
description = "small-string optimized string type with O(1) clone"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-analyzer/smol_str"
diff --git a/lib/smol_str/README.md b/lib/smol_str/README.md
index 610726a216..5e3506846f 100644
--- a/lib/smol_str/README.md
+++ b/lib/smol_str/README.md
@@ -7,7 +7,7 @@
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 (therefore == size_of::<String>() on 64 bit platforms)
* `Clone` is `O(1)`
* Strings are stack-allocated if they are:
* Up to 23 bytes long