aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-07-02 17:05:10 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-07-02 17:05:10 -0700
commit52ffad0d774f642ffc5571f15224d2b898051dfb (patch)
treee5297a56a2c6a087ddda55a08b1e70a33a5dedc3
parente70a3d3728b24b72435661f893f1e2e5161a8382 (diff)
downloadcppawk-52ffad0d774f642ffc5571f15224d2b898051dfb.tar.gz
cppawk-52ffad0d774f642ffc5571f15224d2b898051dfb.tar.bz2
cppawk-52ffad0d774f642ffc5571f15224d2b898051dfb.zip
README: remove extra colons in verbatim blocks.
Reported by Paul A. Patience.
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index eb8fab8..c701df1 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ usage details.
For instance, if we define a file called `awkloop.h` which has these contents:
- :::c
+ ::c
#define awkloop(file) for (; getline < file > 0 || (close(file) && 0); )
#define nextrec continue
#define rule(cond) if (cond)
@@ -54,7 +54,7 @@ projectile is fired vertically with an initial speed of 5. Every step of the
simulation, the speed drops by 1 due to gravity, eventually becoming negative.
What is the maximum height achieved?
- :::c
+ ::c
#include <iter.h>
BEGIN {
@@ -70,7 +70,7 @@ What is the maximum height achieved?
The output is
- :::txt
+ ::txt
0
4
7