Skip to content

Commit 79d143f

Browse files
authored
fix: update self calling macro
1 parent f0d34c9 commit 79d143f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ macro_rules! dbg {
385385
#[unstable(feature = "hash_map_internals", issue = "none")]
386386
macro_rules! repetition_utils {
387387
(@count $($tokens:tt),*) => {{
388-
[$($crate::repetition_count!(@replace $tokens => ())),*].len()
388+
[$($crate::repetition_utils!(@replace $tokens => ())),*].len()
389389
}};
390390

391391
(@replace $x:tt => $y:tt) => { $y }

0 commit comments

Comments
 (0)