Update clean.rs

i18n
Michal 2 years ago committed by GitHub
parent 5f6c0853e1
commit 39ecbc0dac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,7 +3,7 @@ use regex::Regex;
use crate::{log, Options};
pub fn clean(a: &[String], options: Options) -> Vec<String> {
let r = Regex::new(r"(\S+)((?:=|>=|<=|>|<)\S+$)").unwrap();
let r = Regex::new(r"(\S+)((?:>=|<=|>|<|=)\S+$)").unwrap();
let mut cleaned: Vec<String> = vec![];
let verbosity = options.verbosity;

Loading…
Cancel
Save