about summary refs log tree commit diff
path: root/compiler/rustc_parse/src
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-07-16 16:40:35 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-07-16 16:40:35 +1000
commit9c4f3dbd066fd8e35f188388f66493522f7d4476 (patch)
tree4bb4111392180c079b66d784061e9b4b4797ab87 /compiler/rustc_parse/src
parent8cb6bc3b5a33cbd7d9b131fad2f63cc243b26ea0 (diff)
downloadrust-9c4f3dbd066fd8e35f188388f66493522f7d4476.tar.gz
rust-9c4f3dbd066fd8e35f188388f66493522f7d4476.zip
Remove references to `maybe_whole_expr`.
It was removed in #126571.
Diffstat (limited to 'compiler/rustc_parse/src')
-rw-r--r--compiler/rustc_parse/src/parser/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/mod.rs b/compiler/rustc_parse/src/parser/mod.rs
index 958458eda9a..0117f993bcb 100644
--- a/compiler/rustc_parse/src/parser/mod.rs
+++ b/compiler/rustc_parse/src/parser/mod.rs
@@ -101,7 +101,6 @@ pub enum TrailingToken {
     MaybeComma,
 }
 
-/// Like `maybe_whole_expr`, but for things other than expressions.
 #[macro_export]
 macro_rules! maybe_whole {
     ($p:expr, $constructor:ident, |$x:ident| $e:expr) => {