Skip to content

Commit

Permalink
docs: source code callouts
Browse files Browse the repository at this point in the history
  • Loading branch information
alandefreitas committed May 29, 2024
1 parent 52d63cd commit 49fc14b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/modules/ROOT/pages/install.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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`
Expand Down

0 comments on commit 49fc14b

Please sign in to comment.