From ef174883985d764d727002be004a113968922013 Mon Sep 17 00:00:00 2001 From: dnalborczyk Date: Thu, 12 Dec 2019 00:02:07 -0500 Subject: [PATCH] fix v8-flags example to manual (#3470) --- std/manual.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/std/manual.md b/std/manual.md index 2582184ed6..4af56d7c31 100644 --- a/std/manual.md +++ b/std/manual.md @@ -764,9 +764,15 @@ source /usr/local/etc/bash_completion.d/deno.bash ### V8 flags -V8 has many many internal command-line flags, that you can see with -`--v8-options`. -[It looks like this.](https://gist.github.com/ry/a610ce48cba2f0225f9c81a5a833fc87) +V8 has many many internal command-line flags. + +```shell +# list available v8 flags +$ deno --v8-flags=--help + +# example for applying multiple flags +$ deno --v8-flags=--expose-gc,--use-strict +``` Particularly useful ones: