File tree Expand file tree Collapse file tree
crates/anodized-core/src/annotate Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ impl Parse for Spec {
126126 Keyword :: Decreases => {
127127 errors. add ( Error :: new (
128128 arg. keyword_span ,
129- format ! ( "`{}` parameter is not supported here" , & arg. keyword) ,
129+ format ! ( "`{}` parameter is not supported here" , arg. keyword) ,
130130 ) ) ;
131131 }
132132 }
@@ -180,7 +180,7 @@ impl Parse for DataSpec {
180180 _ => {
181181 errors. add ( Error :: new (
182182 arg. keyword_span ,
183- format ! ( "`{}` parameter is not supported here" , & arg. keyword) ,
183+ format ! ( "`{}` parameter is not supported here" , arg. keyword) ,
184184 ) ) ;
185185 }
186186 }
@@ -234,7 +234,7 @@ impl Parse for LoopSpec {
234234 _ => {
235235 errors. add ( Error :: new (
236236 arg. keyword_span ,
237- format ! ( "`{}` parameter is not supported here" , & arg. keyword) ,
237+ format ! ( "`{}` parameter is not supported here" , arg. keyword) ,
238238 ) ) ;
239239 }
240240 }
You can’t perform that action at this time.
0 commit comments