about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-08-18 13:15:36 +0200
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-08-18 13:15:36 +0200
commit9aa5fbf79c39867f144e5a38c53a8edd2e2069ba (patch)
tree51d53a236648d44782d703b18ebde413c9ab6a30 /docs
parent06ed138247fbe1eb56e372898559def54834887d (diff)
downloadrust-9aa5fbf79c39867f144e5a38c53a8edd2e2069ba.tar.gz
rust-9aa5fbf79c39867f144e5a38c53a8edd2e2069ba.zip
Fix shell helpers in usage docs
Diffstat (limited to 'docs')
-rw-r--r--docs/usage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/usage.md b/docs/usage.md
index c6210f958d6..135a51ce392 100644
--- a/docs/usage.md
+++ b/docs/usage.md
@@ -54,7 +54,7 @@ These are a few functions that allow you to easily run rust code from the shell
 
 ```bash
 function jit_naked() {
-    echo "$@" | $cg_clif_dir/dist/rustc-clif - -Zunstable-features -Cllvm-args=mode=jit -Cprefer-dynamic
+    echo "$@" | $cg_clif_dir/dist/rustc-clif - -Zunstable-options -Cllvm-args=mode=jit-lazy -Cprefer-dynamic
 }
 
 function jit() {