From 49fc14bfb8881407a07c7cb7485c550cef2b548f Mon Sep 17 00:00:00 2001 From: alandefreitas Date: Wed, 29 May 2024 12:07:37 -0300 Subject: [PATCH] docs: source code callouts --- docs/modules/ROOT/pages/install.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/modules/ROOT/pages/install.adoc b/docs/modules/ROOT/pages/install.adoc index 9e3e74ce6..2c0825fb0 100644 --- a/docs/modules/ROOT/pages/install.adoc +++ b/docs/modules/ROOT/pages/install.adoc @@ -128,7 +128,7 @@ Windows PowerShell:: -- [source,bash] ---- -Invoke-WebRequest -Uri "https://github.com/svaarala/duktape/releases/download/v2.7.0/duktape-2.7.0.tar.xz" -OutFile "duktape-2.7.0.tar.xz" +Invoke-WebRequest -Uri "https://github.com/svaarala/duktape/releases/download/v2.7.0/duktape-2.7.0.tar.xz" -OutFile "duktape-2.7.0.tar.xz" <.> ---- <.> Downloads the `duktape` source code. @@ -169,9 +169,9 @@ Windows PowerShell:: -- [source,bash] ---- -$content = Get-Content -Path "src\duk_config.h" -$content = $content -replace '#define DUK_F_DLL_BUILD', '#undef DUK_F_DLL_BUILD' -$content | Set-Content -Path "src\duk_config.h" +$content = Get-Content -Path "src\duk_config.h" <.> +$content = $content -replace '#define DUK_F_DLL_BUILD', '#undef DUK_F_DLL_BUILD' <.> +$content | Set-Content -Path "src\duk_config.h" <.> ---- <.> Read the content of `duk_config.h`