@@ -143,7 +143,7 @@ struct QueryModifiers {
143143 anon : Option < Ident > ,
144144 arena_cache : Option < Ident > ,
145145 cache_on_disk_if : Option < CacheOnDiskIf > ,
146- cycle_delay_bug : Option < Ident > ,
146+ cycle_delayed_bug : Option < Ident > ,
147147 cycle_fatal : Option < Ident > ,
148148 cycle_stash : Option < Ident > ,
149149 depth_limit : Option < Ident > ,
@@ -161,7 +161,7 @@ fn parse_query_modifiers(input: ParseStream<'_>) -> Result<QueryModifiers> {
161161 let mut cache_on_disk_if = None ;
162162 let mut desc = None ;
163163 let mut cycle_fatal = None ;
164- let mut cycle_delay_bug = None ;
164+ let mut cycle_delayed_bug = None ;
165165 let mut cycle_stash = None ;
166166 let mut no_hash = None ;
167167 let mut anon = None ;
@@ -199,8 +199,8 @@ fn parse_query_modifiers(input: ParseStream<'_>) -> Result<QueryModifiers> {
199199 try_insert ! ( arena_cache = modifier) ;
200200 } else if modifier == "cycle_fatal" {
201201 try_insert ! ( cycle_fatal = modifier) ;
202- } else if modifier == "cycle_delay_bug " {
203- try_insert ! ( cycle_delay_bug = modifier) ;
202+ } else if modifier == "cycle_delayed_bug " {
203+ try_insert ! ( cycle_delayed_bug = modifier) ;
204204 } else if modifier == "cycle_stash" {
205205 try_insert ! ( cycle_stash = modifier) ;
206206 } else if modifier == "no_hash" {
@@ -229,7 +229,7 @@ fn parse_query_modifiers(input: ParseStream<'_>) -> Result<QueryModifiers> {
229229 cache_on_disk_if,
230230 desc,
231231 cycle_fatal,
232- cycle_delay_bug ,
232+ cycle_delayed_bug ,
233233 cycle_stash,
234234 no_hash,
235235 anon,
@@ -247,7 +247,7 @@ fn make_modifiers_stream(query: &Query, modifiers: &QueryModifiers) -> proc_macr
247247 anon,
248248 arena_cache,
249249 cache_on_disk_if,
250- cycle_delay_bug ,
250+ cycle_delayed_bug ,
251251 cycle_fatal,
252252 cycle_stash,
253253 depth_limit,
@@ -264,8 +264,8 @@ fn make_modifiers_stream(query: &Query, modifiers: &QueryModifiers) -> proc_macr
264264 let arena_cache = arena_cache. is_some ( ) ;
265265 let cache_on_disk = cache_on_disk_if. is_some ( ) ;
266266
267- let cycle_error_handling = if cycle_delay_bug . is_some ( ) {
268- quote ! { DelayBug }
267+ let cycle_error_handling = if cycle_delayed_bug . is_some ( ) {
268+ quote ! { DelayedBug }
269269 } else if cycle_fatal. is_some ( ) {
270270 quote ! { Fatal }
271271 } else if cycle_stash. is_some ( ) {
@@ -408,7 +408,7 @@ fn add_to_analyzer_stream(query: &Query, analyzer_stream: &mut proc_macro2::Toke
408408 doc_link ! (
409409 arena_cache,
410410 cycle_fatal,
411- cycle_delay_bug ,
411+ cycle_delayed_bug ,
412412 cycle_stash,
413413 no_hash,
414414 anon,
0 commit comments