From a29629befb8b1e49d38d4278fd3647231c38995b Mon Sep 17 00:00:00 2001 From: John-John Tedro Date: Sat, 27 Jul 2024 06:05:15 +0200 Subject: [PATCH] rune: Update docs --- README.md | 2 +- crates/rune-alloc/src/lib.rs | 1 - crates/rune/README.md | 2 +- crates/rune/src/lib.rs | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 13088ebd0..f02b8bf86 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ If you want to see detailed diagnostics of your program while it's running, you can use: ```text -cargo run --bin rune -- run scripts/hello_world.rn --dump-unit --trace --dump-vm +cargo run --bin rune -- run scripts/hello_world.rn --dump --trace ``` See `--help` for more information. diff --git a/crates/rune-alloc/src/lib.rs b/crates/rune-alloc/src/lib.rs index a9fa695fd..a8c7c6cd9 100644 --- a/crates/rune-alloc/src/lib.rs +++ b/crates/rune-alloc/src/lib.rs @@ -15,7 +15,6 @@ //!
//! //! The Rune Language, an embeddable dynamic programming language for Rust. - // Quite a few parts copied from the Rust Project under the MIT license. // // Copyright 2014-2024 The Rust Project Developers diff --git a/crates/rune/README.md b/crates/rune/README.md index 13088ebd0..f02b8bf86 100644 --- a/crates/rune/README.md +++ b/crates/rune/README.md @@ -57,7 +57,7 @@ If you want to see detailed diagnostics of your program while it's running, you can use: ```text -cargo run --bin rune -- run scripts/hello_world.rn --dump-unit --trace --dump-vm +cargo run --bin rune -- run scripts/hello_world.rn --dump --trace ``` See `--help` for more information. diff --git a/crates/rune/src/lib.rs b/crates/rune/src/lib.rs index 8600b118b..f52fd4d48 100644 --- a/crates/rune/src/lib.rs +++ b/crates/rune/src/lib.rs @@ -57,7 +57,7 @@ //! you can use: //! //! ```text -//! cargo run --bin rune -- run scripts/hello_world.rn --dump-unit --trace --dump-vm +//! cargo run --bin rune -- run scripts/hello_world.rn --dump --trace //! ``` //! //! See `--help` for more information.