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 37379b0 commit c7c7a43Copy full SHA for c7c7a43
regex-syntax/src/ast/print.rs
@@ -9,7 +9,7 @@
9
// except according to those terms.
10
11
/*!
12
-This module provides a regular expression printer.
+This module provides a regular expression printer for `Ast`.
13
*/
14
15
use std::fmt;
@@ -422,7 +422,7 @@ mod tests {
422
}
423
424
fn roundtrip_with<F>(mut f: F, given: &str)
425
- where F: FnMut(&mut ParserBuilder) -> &mut ParserBuilder
+ where F: FnMut(&mut ParserBuilder) -> &mut ParserBuilder
426
{
427
let mut builder = ParserBuilder::new();
428
f(&mut builder);
@@ -434,11 +434,6 @@ mod tests {
434
assert_eq!(given, dst);
435
436
437
- #[test]
438
- fn scratch() {
439
- roundtrip(".");
440
- }
441
-
442
#[test]
443
fn print_literal() {
444
roundtrip("a");
0 commit comments