summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorsekc <sekc@sekc.me>2024-03-25 11:59:19 +0000
committerGitHub <noreply@github.com>2024-03-25 12:59:19 +0100
commitb1b78f4369f2c029d1d6455eaedb782be44d7921 (patch)
treebb229de10f122ca9f35d225600d796ffc90d670a /doc
parent2724e182286d25d69c7709c2c41aa80ce8eb8e97 (diff)
doc/build-helpers: add missing semicolons (#298632)
Co-authored-by: seksea <williamireland0@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/build-helpers/trivial-build-helpers.chapter.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build-helpers/trivial-build-helpers.chapter.md b/doc/build-helpers/trivial-build-helpers.chapter.md
index 6d14db639938..c9985bda7923 100644
--- a/doc/build-helpers/trivial-build-helpers.chapter.md
+++ b/doc/build-helpers/trivial-build-helpers.chapter.md
@@ -488,7 +488,7 @@ writeTextFile {
echo "hi"
'';
executable = true;
- destination = "bin/my-script"
+ destination = "bin/my-script";
}
```
@@ -576,7 +576,7 @@ writeTextFile {
echo "hi"
'';
executable = true;
- destination = "bin/my-script"
+ destination = "bin/my-script";
}
```