chore: minor improvements

This commit is contained in:
Rod Elias
2026-01-12 00:22:59 -03:00
committed by Rod Elias
co-authored by Rod Elias
parent 7850a73d95
commit 45f789114b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Strings
Rust has two string types, a string slice (`&str`) and an owned string (`String`).
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.