fixed formatting

This commit is contained in:
seporterfield 2023-01-01 02:17:53 +01:00 committed by GitHub
parent 3fad2a9c83
commit 66eaaf7b6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.