From 42193bee295ce131f18fbc0d49b7206214717330 Mon Sep 17 00:00:00 2001 From: Lioness100 Date: Mon, 20 Feb 2023 03:11:16 -0500 Subject: [PATCH] fix typos (#2982) --- actix-files/src/path_buf.rs | 2 +- actix-http/CHANGES.md | 2 +- actix-web/MIGRATION-2.0.md | 2 +- actix-web/src/test/test_utils.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/actix-files/src/path_buf.rs b/actix-files/src/path_buf.rs index 9ee1338c6..650f55247 100644 --- a/actix-files/src/path_buf.rs +++ b/actix-files/src/path_buf.rs @@ -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)?; diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 4cc467ddc..6a45e79dd 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -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] diff --git a/actix-web/MIGRATION-2.0.md b/actix-web/MIGRATION-2.0.md index 0455062d1..3af5f6e1a 100644 --- a/actix-web/MIGRATION-2.0.md +++ b/actix-web/MIGRATION-2.0.md @@ -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` diff --git a/actix-web/src/test/test_utils.rs b/actix-web/src/test/test_utils.rs index 398b29605..b985c3b36 100644 --- a/actix-web/src/test/test_utils.rs +++ b/actix-web/src/test/test_utils.rs @@ -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(res: ServiceResponse) -> Result> where B: MessageBody,