about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhman523 <shbarbella@gmail.com>2019-09-30 00:26:42 -0500
committerhman523 <shbarbella@gmail.com>2019-09-30 00:26:42 -0500
commit6c6d27d685c05671e156b506570b07902a6b76b7 (patch)
tree97daea17db9e5ca14ac0dd86dd091e2037331496
parentd16ee891c63e2441ba97072a83fa79b0b6e6e01a (diff)
downloadrust-6c6d27d685c05671e156b506570b07902a6b76b7.tar.gz
rust-6c6d27d685c05671e156b506570b07902a6b76b7.zip
Fixed a misleading documentation issue #64844
-rw-r--r--src/libcore/option.rs2
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