We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6d7ca commit 32391f7Copy full SHA for 32391f7
src/tools/tidy/src/fluent_used.rs
@@ -12,7 +12,7 @@ fn filter_used_messages(
12
) {
13
// we don't just check messages never appear in Rust files,
14
// 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.
+ // so we check messages appear only once in all Rust and Fluent files.
16
let matches = static_regex!(r"\w+").find_iter(contents);
17
for name in matches {
18
if let Some((name, filename)) = msgs_not_appeared_yet.remove_entry(name.as_str()) {
0 commit comments