diff options
author | EuAndreh <eu@euandre.org> | 2025-04-16 11:20:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-16 11:20:43 -0300 |
commit | d36c2e459a74ec67e523539eb98b78b95b01432a (patch) | |
tree | a7099fbfbdab6a21f59b6efe095bffb40ceae646 /src/content/blog/2020/11/14/local-first-review.adoc | |
parent | src/content/style.css: Show header on hover only (diff) | |
download | euandre.org-d36c2e459a74ec67e523539eb98b78b95b01432a.tar.gz euandre.org-d36c2e459a74ec67e523539eb98b78b95b01432a.tar.xz |
src/content/: Normalize [source,$lang] code blocks
Diffstat (limited to 'src/content/blog/2020/11/14/local-first-review.adoc')
-rw-r--r-- | src/content/blog/2020/11/14/local-first-review.adoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/content/blog/2020/11/14/local-first-review.adoc b/src/content/blog/2020/11/14/local-first-review.adoc index 2a57664..f9dd4b0 100644 --- a/src/content/blog/2020/11/14/local-first-review.adoc +++ b/src/content/blog/2020/11/14/local-first-review.adoc @@ -46,7 +46,7 @@ ____ They give examples of artificial restrictions, like this artificial restriction I've come up with: -[source,bash] +[source,sh] ---- #!/bin/sh @@ -63,7 +63,7 @@ echo $((2 + 2)) Now when using this very useful program: -[source,bash] +[source,sh] ---- # today $ ./useful-adder.sh @@ -84,7 +84,7 @@ or similar restriction, and stopped working after days pass? Or what if the programmer added a constant to make the development simpler, and this led to unintentionally restricting the user? -[source,bash] +[source,sh] ---- # today $ useful-program |