We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6c9372 + f29bb9e commit 93f53b0Copy full SHA for 93f53b0
verify/src/lib.rs
@@ -179,7 +179,7 @@ pub fn grep_for_re_export(path: &Path, s: &str) -> Result<bool> {
179
.with_context(|| format!("Failed to grep for string in {}", path.display()))?;
180
let reader = io::BufReader::new(file);
181
182
- let s = format!("{}[,}}]", &s);
+ let s = format!("{}[,}};]", &s);
183
let re = Regex::new(&s)?;
184
185
for line in reader.lines() {
0 commit comments