File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -235,10 +235,7 @@ fn main() -> anyhow::Result<()> {
235
235
"'{}' is already in the dictionary but not annotated." ,
236
236
arg_bare_word
237
237
) ,
238
- _ => format ! (
239
- "'{}' is not in the dictionary yet." ,
240
- arg_bare_word
241
- ) ,
238
+ _ => format ! ( "'{}' is not in the dictionary yet." , arg_bare_word) ,
242
239
} ;
243
240
244
241
let mut different_annot = false ;
@@ -257,7 +254,8 @@ fn main() -> anyhow::Result<()> {
257
254
) ;
258
255
} else {
259
256
status_summary. push_str (
260
- format ! ( "\n Your annotations are the same as the dictionary.\n " ) . as_str ( ) ,
257
+ format ! ( "\n Your annotations are the same as the dictionary.\n " )
258
+ . as_str ( ) ,
261
259
) ;
262
260
}
263
261
}
@@ -287,7 +285,8 @@ fn main() -> anyhow::Result<()> {
287
285
} ;
288
286
289
287
let should_print_old_info = already_annotated;
290
- let should_print_new_info = arg_annot. is_some ( ) && ( !already_annotated || different_annot) ;
288
+ let should_print_new_info =
289
+ arg_annot. is_some ( ) && ( !already_annotated || different_annot) ;
291
290
292
291
if should_print_old_info {
293
292
println ! ( "Old, from the dictionary:" ) ;
You can’t perform that action at this time.
0 commit comments