From fb7d51033c4d507f412d7f5ec580cb325d5a4e0a Mon Sep 17 00:00:00 2001 From: Pure White Date: Fri, 29 Jul 2022 02:01:03 +0800 Subject: [PATCH] doc: fix c set strategy doc (#4550) In #4252 I changed the signature and doc of the rust code, but forgot to change the doc for c. Set strategy no longer returns error. This commit fixes that. --- crates/c-api/include/wasmtime/config.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/c-api/include/wasmtime/config.h b/crates/c-api/include/wasmtime/config.h index 2d04ca7179..77c1193632 100644 --- a/crates/c-api/include/wasmtime/config.h +++ b/crates/c-api/include/wasmtime/config.h @@ -197,9 +197,6 @@ WASMTIME_CONFIG_PROP(void, wasm_memory64, bool) * \brief Configures how JIT code will be compiled. * * This setting is #WASMTIME_STRATEGY_AUTO by default. - * - * If the compilation strategy selected could not be enabled then an error is - * returned. */ WASMTIME_CONFIG_PROP(void, strategy, wasmtime_strategy_t)