mirror of
https://github.com/actix/actix-web.git
synced 2025-01-02 05:18:44 +00:00
Fixed documentation typo for actix-files (#1278)
This commit is contained in:
parent
bca41f8d40
commit
412e54ce10
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ impl Files {
|
||||||
///
|
///
|
||||||
/// `File` uses `ThreadPool` for blocking filesystem operations.
|
/// `File` uses `ThreadPool` for blocking filesystem operations.
|
||||||
/// By default pool with 5x threads of available cpus is used.
|
/// By default pool with 5x threads of available cpus is used.
|
||||||
/// Pool size can be changed by setting ACTIX_CPU_POOL environment variable.
|
/// Pool size can be changed by setting ACTIX_THREADPOOL environment variable.
|
||||||
pub fn new<T: Into<PathBuf>>(path: &str, dir: T) -> Files {
|
pub fn new<T: Into<PathBuf>>(path: &str, dir: T) -> Files {
|
||||||
let orig_dir = dir.into();
|
let orig_dir = dir.into();
|
||||||
let dir = match orig_dir.canonicalize() {
|
let dir = match orig_dir.canonicalize() {
|
||||||
|
|
Loading…
Reference in a new issue