We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a94b0ef + 4f64772 commit 11e893fCopy full SHA for 11e893f
src/types/pointer.md
@@ -40,9 +40,9 @@ reference by reborrowing it (`&*` or `&mut *`). Raw pointers are generally
40
discouraged in Rust code; they exist to support interoperability with foreign
41
code, and writing performance-critical or low-level functions.
42
43
-When comparing pointers they are compared by their address, rather than by
44
-what they point to. When comparing pointers to [dynamically sized types] they
45
-also have their addition data compared.
+When comparing raw pointers they are compared by their address, rather than by
+what they point to. When comparing raw pointers to [dynamically sized types] they
+also have their additional data compared.
46
47
## Smart Pointers
48
0 commit comments