We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd84bb commit 691ccafCopy full SHA for 691ccaf
README.md
@@ -68,6 +68,6 @@ let term2 = Term::from_regex("de").unwrap();
68
let subtraction = term1.subtraction(&term2).unwrap();
69
70
if let Term::RegularExpression(regex) = subtraction {
71
- assert_eq!("abc", regex.to_string());
+ println!("{}", regex.to_string()); // abc
72
}
73
```
0 commit comments