@@ -225,23 +225,21 @@ async fn ping() -> HttpResponse {
225
225
///
226
226
/// # Examples
227
227
///
228
- /// ```
228
+ /// ```no_run
229
229
/// use rust_code_analysis_web::server::run;
230
230
///
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;
234
236
///
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
+ /// }
245
243
/// }
246
244
/// ```
247
245
pub async fn run ( host : & str , port : u16 , n_threads : usize ) -> std:: io:: Result < ( ) > {
0 commit comments