Skip to content

Commit 5560f8c

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)