summaryrefslogtreecommitdiff
path: root/exercises/smart_pointers
diff options
context:
space:
mode:
authorseporterfield <107010978+seporterfield@users.noreply.github.com>2023-01-01 02:17:53 +0100
committerGitHub <noreply@github.com>2023-01-01 02:17:53 +0100
commit66eaaf7b6e5f7a5fe0ec0472c7ef9610b332bb2f (patch)
tree2111999db809599a7d8efd972d3d4fa2a454468c /exercises/smart_pointers
parent3fad2a9c8364c6994fa5de0ed58612ddceaf2f25 (diff)
fixed formatting
Diffstat (limited to 'exercises/smart_pointers')
-rw-r--r--exercises/smart_pointers/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/smart_pointers/README.md b/exercises/smart_pointers/README.md
index 3893e78..c517ae3 100644
--- a/exercises/smart_pointers/README.md
+++ b/exercises/smart_pointers/README.md
@@ -1,4 +1,4 @@
-## Smart Pointers
+# Smart Pointers
In Rust, smart pointers are variables that contain an address in memory and reference some other data, but they also have additional metadata and capabilities.
Smart pointers in Rust often own the data they point to, while references only borrow data.