Skip to content

Commit

Permalink
fix typos (#2982)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lioness100 authored Feb 20, 2023
1 parent dc08ea0 commit 42193be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion actix-files/src/path_buf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl PathBufWrap {
let mut segment_count = path.matches('/').count() + 1;

// we can decode the whole path here (instead of per-segment decoding)
// because we will reject `%2F` in paths using `segement_count`.
// because we will reject `%2F` in paths using `segment_count`.
let path = percent_encoding::percent_decode_str(path)
.decode_utf8()
.map_err(|_| UriSegmentError::NotValidUtf8)?;
Expand Down
2 changes: 1 addition & 1 deletion actix-http/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@
- Reduce the level from `error` to `debug` for the log line that is emitted when a `500 Internal Server Error` is built using `HttpResponse::from_error`. [#2201]
- `ResponseBuilder::message_body` now returns a `Result`. [#2201]
- Remove `Unpin` bound on `ResponseBuilder::streaming`. [#2253]
- `HttpServer::{listen_rustls(), bind_rustls()}` now honor the ALPN protocols in the configuation parameter. [#2226]
- `HttpServer::{listen_rustls(), bind_rustls()}` now honor the ALPN protocols in the configuration parameter. [#2226]

### Removed
- Stop re-exporting `http` crate's `HeaderMap` types in addition to ours. [#2171]
Expand Down
2 changes: 1 addition & 1 deletion actix-web/MIGRATION-2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
- `actix_http_test::TestServer` moved to `actix_web::test` module. To start
test server use `test::start()` or `test_start_with_config()` methods

- `ResponseError` trait has been reafctored. `ResponseError::error_response()` renders
- `ResponseError` trait has been refactored. `ResponseError::error_response()` renders
http response.

- Feature `rust-tls` renamed to `rustls`
Expand Down
2 changes: 1 addition & 1 deletion actix-web/src/test/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ where
})
}

/// Fallible version of [`read_body_json`] that allows testing response deserialzation errors.
/// Fallible version of [`read_body_json`] that allows testing response deserialization errors.
pub async fn try_read_body_json<T, B>(res: ServiceResponse<B>) -> Result<T, Box<dyn StdError>>
where
B: MessageBody,
Expand Down

0 comments on commit 42193be

Please sign in to comment.