We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52bdf03 commit 0f86761Copy full SHA for 0f86761
src/url.rs
@@ -202,7 +202,7 @@ mod tests {
202
}
203
204
#[test]
205
- fn test_version_regix() {
+ fn test_version_regex() {
206
let captures = VERSION_REGEX.captures("v0.1.0").unwrap();
207
assert_eq!(captures.len(), 3);
208
assert_eq!(captures.get(1).unwrap().as_str(), "v");
@@ -220,7 +220,7 @@ mod tests {
220
221
222
223
- fn test_simple_version_regix() {
+ fn test_simple_version_regex() {
224
let captures = VERSION_REGEX.captures("2.1.1").unwrap();
225
226
assert_eq!(captures.get(1).unwrap().as_str(), "");
0 commit comments