diff --git a/src/types/pointer.md b/src/types/pointer.md index 70d8d8c0332c4..8ed3fa8b90209 100644 --- a/src/types/pointer.md +++ b/src/types/pointer.md @@ -40,9 +40,9 @@ reference by reborrowing it (`&*` or `&mut *`). Raw pointers are generally discouraged in Rust code; they exist to support interoperability with foreign code, and writing performance-critical or low-level functions. -When comparing pointers they are compared by their address, rather than by -what they point to. When comparing pointers to [dynamically sized types] they -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. ## Smart Pointers