Description
Two doctest examples in src/server/config/mod.rs contain stray text (important - comment) that causes compilation failures.
Affected Lines
- Line 305: In the
accept_initial_delay method documentation
- Line 326: In the
accept_max_delay method documentation
Required Changes
Remove the stray (important - comment) text from both doctests:
- /// let server = WireframeServer::new(|| WireframeApp::default())(important - comment)
+ /// let server = WireframeServer::new(|| WireframeApp::default())
References
Description
Two doctest examples in
src/server/config/mod.rscontain stray text(important - comment)that causes compilation failures.Affected Lines
accept_initial_delaymethod documentationaccept_max_delaymethod documentationRequired Changes
Remove the stray
(important - comment)text from both doctests:References