We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faac114 commit f131a13Copy full SHA for f131a13
src/types/pointer.md
@@ -40,8 +40,8 @@ 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
+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
45
also have their addition data compared.
46
47
## Smart Pointers
0 commit comments