Skip to content

Commit 32391f7

Browse files
committed
tidy: improve comment
1 parent da6d7ca commit 32391f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/tidy/src/fluent_used.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn filter_used_messages(
1212
) {
1313
// we don't just check messages never appear in Rust files,
1414
// because messages can be used as parts of other fluent messages in Fluent files,
15-
// so we do checking messages appear only once in all Rust and Fluent files.
15+
// so we check messages appear only once in all Rust and Fluent files.
1616
let matches = static_regex!(r"\w+").find_iter(contents);
1717
for name in matches {
1818
if let Some((name, filename)) = msgs_not_appeared_yet.remove_entry(name.as_str()) {

0 commit comments

Comments
 (0)