Skip to content

Commit

Permalink
Fixed a misleading documentation issue #64844
Browse files Browse the repository at this point in the history
  • Loading branch information
hman523 committed Sep 30, 2019
1 parent d16ee89 commit 6c6d27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/option.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6c6d27d

Please sign in to comment.