about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2021-07-16 10:31:56 +0200
committerRalf Jung <post@ralfj.de>2021-07-16 10:31:56 +0200
commit0d3d6f05f15bcac8a565d7ed0206469c8df6439a (patch)
tree097ffca23bde4ab282a6f58dcea7aa9b25fbe3a1
parent057050a95bdfc5849a893208c53c7b2a081c6808 (diff)
downloadrust-0d3d6f05f15bcac8a565d7ed0206469c8df6439a.tar.gz
rust-0d3d6f05f15bcac8a565d7ed0206469c8df6439a.zip
fix typo in compile_fail doctest
-rw-r--r--library/core/src/option.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/option.rs b/library/core/src/option.rs
index b7af3ea8c1a..c27db0767ac 100644
--- a/library/core/src/option.rs
+++ b/library/core/src/option.rs
@@ -356,7 +356,7 @@
 //! // must have the same concrete type.
 //! fn make_iter(do_insert: bool) -> impl Iterator<Item = i32> {
 //!     // Explicit returns to illustrate return types not matching
-//!     match x {
+//!     match do_insert {
 //!         true => return (0..4).chain(once(42)).chain(4..8),
 //!         false => return (0..4).chain(empty()).chain(4..8),
 //!     }