summaryrefslogtreecommitdiff
path: root/exercises/strings/REAMDE.md
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/strings/REAMDE.md')
-rw-r--r--exercises/strings/REAMDE.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/exercises/strings/REAMDE.md b/exercises/strings/REAMDE.md
deleted file mode 100644
index b79ac06..0000000
--- a/exercises/strings/REAMDE.md
+++ /dev/null
@@ -1,9 +0,0 @@
-### Strings
-
-Rust has two string types, a string slice (`&str`) and an owned string (`String`).
-We're not going to dictate when you should use which one, but we'll show you how
-to identify and create them, as well as use them.
-
-#### Book Sections
-
-- [Strings](https://doc.rust-lang.org/stable/book/ch08-02-strings.html)