diff --git a/lib/src/execute.rs b/lib/src/execute.rs index e94e2582..2553d275 100644 --- a/lib/src/execute.rs +++ b/lib/src/execute.rs @@ -166,10 +166,10 @@ impl ExecuteCtx { /// including running the wasm start function. It then proceeds to execute the /// instantiated module's WASI entry point, running to completion. If execution /// results in an error, a response is still produced, but with a 500 status code. - /// - /// Build time: Before you build or test your code, we recommend to set the release flag e.g. `cargo test --release` otherwise, - /// the execution will be very slow. This has to do with the Cranelift compiler, - /// which is extremely slow when compiled in debug mode. + /// + /// Build time: Before you build or test your code, we recommend to set the release flag + /// e.g. `cargo test --release` otherwise the execution will be very slow. This has to do + /// with the Cranelift compiler, which is extremely slow when compiled in debug mode. /// /// # Example ///