From a674fffc600eafe97dbbe92d83a27929bb68c6d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sun, 26 Dec 2021 01:18:31 +0100 Subject: [PATCH] Fix typo in several config comments --- aquatic_http/src/config.rs | 2 +- aquatic_udp/src/config.rs | 2 +- aquatic_ws/src/config.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aquatic_http/src/config.rs b/aquatic_http/src/config.rs index 7a168feb..789f1d45 100644 --- a/aquatic_http/src/config.rs +++ b/aquatic_http/src/config.rs @@ -11,7 +11,7 @@ use aquatic_cli_helpers::LogLevel; #[serde(default)] pub struct Config { /// Socket workers receive requests from the socket, parse them and send - /// them on to the request workers. They then recieve responses from the + /// them on to the request workers. They then receive responses from the /// request workers, encode them and send them back over the socket. pub socket_workers: usize, /// Request workers receive a number of requests from socket workers, diff --git a/aquatic_udp/src/config.rs b/aquatic_udp/src/config.rs index 433d1f2b..5e3a10b4 100644 --- a/aquatic_udp/src/config.rs +++ b/aquatic_udp/src/config.rs @@ -11,7 +11,7 @@ use toml_config::TomlConfig; #[serde(default)] pub struct Config { /// Socket workers receive requests from the socket, parse them and send - /// them on to the request workers. They then recieve responses from the + /// them on to the request workers. They then receive responses from the /// request workers, encode them and send them back over the socket. pub socket_workers: usize, /// Request workers receive a number of requests from socket workers, diff --git a/aquatic_ws/src/config.rs b/aquatic_ws/src/config.rs index 6e01373b..87726ae7 100644 --- a/aquatic_ws/src/config.rs +++ b/aquatic_ws/src/config.rs @@ -14,7 +14,7 @@ use toml_config::TomlConfig; #[serde(default)] pub struct Config { /// Socket workers receive requests from the socket, parse them and send - /// them on to the request workers. They then recieve responses from the + /// them on to the request workers. They then receive responses from the /// request workers, encode them and send them back over the socket. pub socket_workers: usize, /// Request workers receive a number of requests from socket workers,