Skip to content

Commit a6779b4

Browse files
committed
web: Improve server doc test
1 parent 0a6c988 commit a6779b4

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

rust-code-analysis-web/src/web/server.rs

+12-14
Original file line numberDiff line numberDiff line change
@@ -225,23 +225,21 @@ async fn ping() -> HttpResponse {
225225
///
226226
/// # Examples
227227
///
228-
/// ```
228+
/// ```no_run
229229
/// use rust_code_analysis_web::server::run;
230230
///
231-
/// let host = "127.0.0.1";
232-
/// let port = 8080;
233-
/// let num_threads = 4;
231+
/// #[actix_web::main]
232+
/// async fn main() {
233+
/// let host = "127.0.0.1";
234+
/// let port = 8080;
235+
/// let num_threads = 4;
234236
///
235-
/// // Runs a server on a determined host with a specific port and using certain
236-
/// // number of threads.
237-
/// // If the server runs correctly, it will be immediately interrupted,
238-
/// // otherwise an error will be shown.
239-
/// match run(&host, port, num_threads).await {
240-
/// Ok(_) => std::process::exit(0),
241-
/// Err(e) => eprintln!(
242-
/// "Cannot run the server at {}:{}: {}",
243-
/// host, port, e
244-
/// ),
237+
/// // Runs a server on a determined host with a specific port and using a
238+
/// // certain number of threads.
239+
/// // If the server does not run correctly, an error will be shown.
240+
/// if let Err(e) = run(host, port, num_threads).await {
241+
/// eprintln!("Cannot run the server at {host}:{port}: {e}");
242+
/// }
245243
/// }
246244
/// ```
247245
pub async fn run(host: &str, port: u16, n_threads: usize) -> std::io::Result<()> {

0 commit comments

Comments
 (0)