1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 09:18:26 +00:00

doc amendments

This commit is contained in:
Rob Ede 2023-07-19 19:27:20 +01:00
parent 908fb2606e
commit 4272510261
No known key found for this signature in database
GPG key ID: 97C636207D3EF933
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
## Unreleased - 2023-xx-xx
- Add `TestServerConfig::workers()` setter method
- Add `TestServerConfig::workers()` setter method.
- Minimum supported Rust version (MSRV) is now 1.65 due to transitive `time` dependency.
## 0.1.1 - 2023-02-26

View file

@ -431,9 +431,9 @@ impl TestServerConfig {
self
}
/// Sets number of workers in the test server process.
/// Sets number of workers for the test server.
///
/// By default, the server boots with 1 worker
/// By default, the server uses 1 worker
pub fn workers(mut self, workers: usize) -> Self {
self.workers = workers;
self