Skip to content

Commit 2a6f495

Browse files
authored
Rollup merge of #64911 - hman523:64844, r=Dylan-DPC
Fixed a misleading documentation issue #64844 Made the suggested change from @steveklabnik on issue #64844
2 parents 8437757 + 6c6d27d commit 2a6f495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/libcore/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
//! # Options and pointers ("nullable" pointers)
4747
//!
4848
//! Rust's pointer types must always point to a valid location; there are
49-
//! no "null" pointers. Instead, Rust has *optional* pointers, like
49+
//! no "null" references. Instead, Rust has *optional* pointers, like
5050
//! the optional owned box, [`Option`]`<`[`Box<T>`]`>`.
5151
//!
5252
//! The following example uses [`Option`] to create an optional box of

0 commit comments

Comments
 (0)