diff options
| author | hman523 <shbarbella@gmail.com> | 2019-09-30 00:26:42 -0500 |
|---|---|---|
| committer | hman523 <shbarbella@gmail.com> | 2019-09-30 00:26:42 -0500 |
| commit | 6c6d27d685c05671e156b506570b07902a6b76b7 (patch) | |
| tree | 97daea17db9e5ca14ac0dd86dd091e2037331496 | |
| parent | d16ee891c63e2441ba97072a83fa79b0b6e6e01a (diff) | |
| download | rust-6c6d27d685c05671e156b506570b07902a6b76b7.tar.gz rust-6c6d27d685c05671e156b506570b07902a6b76b7.zip | |
Fixed a misleading documentation issue #64844
| -rw-r--r-- | src/libcore/option.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 5569d99f8d8..301e432c98d 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -46,7 +46,7 @@ //! # Options and pointers ("nullable" pointers) //! //! Rust's pointer types must always point to a valid location; there are -//! no "null" pointers. Instead, Rust has *optional* pointers, like +//! no "null" references. Instead, Rust has *optional* pointers, like //! the optional owned box, [`Option`]`<`[`Box<T>`]`>`. //! //! The following example uses [`Option`] to create an optional box of |
