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 1a04e71 commit 25c1803Copy full SHA for 25c1803
src/method.rs
@@ -463,7 +463,7 @@ mod test {
463
}
464
465
#[test]
466
- fn test_extention_method() {
+ fn test_extension_method() {
467
assert_eq!(Method::from_str("WOW").unwrap(), "WOW");
468
assert_eq!(Method::from_str("wOw!!").unwrap(), "wOw!!");
469
src/uri/mod.rs
@@ -956,7 +956,7 @@ impl PartialEq<str> for Uri {
956
957
if other.len() < path.len() || path.as_bytes() != &other[..path.len()] {
958
if absolute && path == "/" {
959
- // PathAndQuery can be ommitted, fall through
+ // PathAndQuery can be omitted, fall through
960
} else {
961
return false;
962
0 commit comments