Skip to content

Commit 4827aa6

Browse files
authored
Rollup merge of #70812 - rossmacarthur:fix/unit-called-nil, r=LukasKalbertodt
Do not use "nil" to refer to `()` "nil" is not used in the [book](https://doc.rust-lang.org/book) or in the [standard library](https://doc.rust-lang.org/std) anywhere else. Because "nil" is often used in programming languages to refer to "None" or "null" I think it could be a little confusing for newcomers to see this type referred to as "nil".
2 parents 2ec0e14 + bc26f58 commit 4827aa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/primitive_docs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ mod prim_char {}
320320

321321
#[doc(primitive = "unit")]
322322
//
323-
/// The `()` type, sometimes called "unit" or "nil".
323+
/// The `()` type, also called "unit".
324324
///
325325
/// The `()` type has exactly one value `()`, and is used when there
326326
/// is no other meaningful value that could be returned. `()` is most

0 commit comments

Comments
 (0)