summaryrefslogtreecommitdiffstats
path: root/tokio-macros/src/entry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-macros/src/entry.rs')
-rw-r--r--tokio-macros/src/entry.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-macros/src/entry.rs b/tokio-macros/src/entry.rs
index 8eb184a3..f5c62a4f 100644
--- a/tokio-macros/src/entry.rs
+++ b/tokio-macros/src/entry.rs
@@ -179,7 +179,7 @@ fn parse_knobs(
return Err(syn::Error::new_spanned(namevalue, msg));
}
name => {
- let msg = format!("Unknown attribute {} is specified; expected one of: `flavor`, `worker_threads`, `max_threads`", name);
+ let msg = format!("Unknown attribute {} is specified; expected one of: `flavor`, `worker_threads`", name);
return Err(syn::Error::new_spanned(namevalue, msg));
}
}