summaryrefslogtreecommitdiff
path: root/exercises/smart_pointers/README.md
diff options
context:
space:
mode:
authorAli Afsharzadeh <afsharzadeh8@gmail.com>2023-03-30 19:53:22 +0330
committerAli Afsharzadeh <afsharzadeh8@gmail.com>2023-03-30 19:53:22 +0330
commit382e16eb7ea66cddc4860f4b19453b031a2a8a8a (patch)
tree4867f505b36ed69381a294b58d056cd9e92b8439 /exercises/smart_pointers/README.md
parent362c1b0d113ad9a5bd4d1dee8086757efd060785 (diff)
feat(docs): add markdown linter for exercises README.md files
Diffstat (limited to 'exercises/smart_pointers/README.md')
-rw-r--r--exercises/smart_pointers/README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/smart_pointers/README.md b/exercises/smart_pointers/README.md
index c517ae3..d56d2b6 100644
--- a/exercises/smart_pointers/README.md
+++ b/exercises/smart_pointers/README.md
@@ -1,4 +1,5 @@
# 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.