diff --git a/lib/cli/src/commands/init.rs b/lib/cli/src/commands/init.rs index 5b3ab11ae6d..7509db9ef1b 100644 --- a/lib/cli/src/commands/init.rs +++ b/lib/cli/src/commands/init.rs @@ -8,7 +8,7 @@ use std::path::PathBuf; use wasmer_registry::WasmerConfig; static NOTE: &str = - "# See more keys and definitions at https://docs.wasmer.io/ecosystem/wapm/manifest"; + "# See more keys and definitions at https://docs.wasmer.io/registry/manifest"; const NEWLINE: &str = if cfg!(windows) { "\r\n" } else { "\n" }; diff --git a/lib/types/src/error.rs b/lib/types/src/error.rs index cb207dd0c90..a4b39ed4d38 100644 --- a/lib/types/src/error.rs +++ b/lib/types/src/error.rs @@ -156,7 +156,7 @@ pub enum CompileError { /// The compiler cannot compile for the given target. /// This can refer to the OS, the chipset or any other aspect of the target system. - #[cfg_attr(feature = "std", error("The target {0} is not yet supported (see https://docs.wasmer.io/ecosystem/wasmer/wasmer-features)"))] + #[cfg_attr(feature = "std", error("The target {0} is not yet supported (see https://docs.wasmer.io/runtime/features)"))] UnsupportedTarget(String), /// Insufficient resources available for execution.