diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-07-02 17:05:10 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-07-02 17:05:10 -0700 |
commit | 52ffad0d774f642ffc5571f15224d2b898051dfb (patch) | |
tree | e5297a56a2c6a087ddda55a08b1e70a33a5dedc3 /README.md | |
parent | e70a3d3728b24b72435661f893f1e2e5161a8382 (diff) | |
download | cppawk-52ffad0d774f642ffc5571f15224d2b898051dfb.tar.gz cppawk-52ffad0d774f642ffc5571f15224d2b898051dfb.tar.bz2 cppawk-52ffad0d774f642ffc5571f15224d2b898051dfb.zip |
README: remove extra colons in verbatim blocks.
Reported by Paul A. Patience.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |