From e276b37e1f03a571d3a5f9e02edd2ef64e9361eb Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 20 Jul 2020 10:28:22 +0200 Subject: [PATCH] doc(examples) s/bash/shell/ for the sake of consistency. --- examples/README.md | 2 +- examples/compiler_cranelift.rs | 2 +- examples/compiler_llvm.rs | 2 +- examples/compiler_singlepass.rs | 4 ++-- examples/engine_cross_compilation.rs | 2 +- examples/engine_headless.rs | 2 +- examples/engine_jit.rs | 2 +- examples/engine_native.rs | 2 +- examples/exports_function.rs | 2 +- examples/wasi.rs | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/README.md b/examples/README.md index 59c8b7e07..85fa4e7a3 100644 --- a/examples/README.md +++ b/examples/README.md @@ -89,7 +89,7 @@ example. Execute the example ```shell - $ cargo +nightly run --example compiler-singlepass --release --features "singlepass" + $ cargo run --example compiler-singlepass --release --features "singlepass" ``` diff --git a/examples/compiler_cranelift.rs b/examples/compiler_cranelift.rs index 0b14ddc24..1cfb649f1 100644 --- a/examples/compiler_cranelift.rs +++ b/examples/compiler_cranelift.rs @@ -4,7 +4,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example compiler-cranelift --release --features "cranelift" //! ``` //! diff --git a/examples/compiler_llvm.rs b/examples/compiler_llvm.rs index 43006a9aa..633511742 100644 --- a/examples/compiler_llvm.rs +++ b/examples/compiler_llvm.rs @@ -4,7 +4,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example compiler-llvm --release --features "llvm" //! ``` //! diff --git a/examples/compiler_singlepass.rs b/examples/compiler_singlepass.rs index c6e0cb399..441c07d84 100644 --- a/examples/compiler_singlepass.rs +++ b/examples/compiler_singlepass.rs @@ -4,8 +4,8 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash -//! cargo +nightly run --example compiler-singlepass --release --features "singlepass" +//! ```shell +//! cargo run --example compiler-singlepass --release --features "singlepass" //! ``` //! //! Ready? diff --git a/examples/engine_cross_compilation.rs b/examples/engine_cross_compilation.rs index a04dfaa83..1c9795138 100644 --- a/examples/engine_cross_compilation.rs +++ b/examples/engine_cross_compilation.rs @@ -12,7 +12,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example cross-compilation --release --features "cranelift" //! ``` //! diff --git a/examples/engine_headless.rs b/examples/engine_headless.rs index f05897512..817dccbed 100644 --- a/examples/engine_headless.rs +++ b/examples/engine_headless.rs @@ -38,7 +38,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example engine-headless --release --features "cranelift" //! ``` //! diff --git a/examples/engine_jit.rs b/examples/engine_jit.rs index e49c13ea2..941569ed2 100644 --- a/examples/engine_jit.rs +++ b/examples/engine_jit.rs @@ -12,7 +12,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example engine-jit --release --features "cranelift" //! ``` //! diff --git a/examples/engine_native.rs b/examples/engine_native.rs index da360f133..47cd2d1fa 100644 --- a/examples/engine_native.rs +++ b/examples/engine_native.rs @@ -13,7 +13,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example engine-native --release --features "cranelift" //! ``` //! diff --git a/examples/exports_function.rs b/examples/exports_function.rs index dadd708d9..9448cb06d 100644 --- a/examples/exports_function.rs +++ b/examples/exports_function.rs @@ -11,7 +11,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example exported-function --release --features "cranelift" //! ``` //! diff --git a/examples/wasi.rs b/examples/wasi.rs index 6056a74bf..72617e835 100644 --- a/examples/wasi.rs +++ b/examples/wasi.rs @@ -9,7 +9,7 @@ //! //! You can run the example directly by executing in Wasmer root: //! -//! ```bash +//! ```shell //! cargo run --example wasi --release --features "cranelift,wasi" //! ``` //!