Skip to content

Commit b3308c1

Browse files
committed
Remove the 'ERROR is unimplemented' documentation
.. because it's confusing, since errors are implemented but all errors are considered fatal, as documented.
1 parent e40a0b8 commit b3308c1

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,10 @@ line then the warning applies to the old version of the file, and if the line
5252
above a warning is an added line then the warning applies to the new version of
5353
the file.
5454

55-
On error a line that starts with `ERROR:` and is followed by script name and
56-
error message(s) --which may be one or more lines-- is sent to standard error
57-
output (stderr). The script then continues to the next line.
58-
***This is unimplemented for now. All errors are treated as fatal errors.***
59-
60-
On fatal error a line that starts with `FATAL:` and is followed by script name
61-
and error message(s) --which may be one or more lines-- is sent to standard
62-
error output (stderr). The script then aborts with exit code 1.
55+
All errors are sent to standard error output (stderr). Currently all errors are
56+
treated as fatal errors. On fatal error a line that starts with `FATAL:` is
57+
followed by script name and error message(s), which may be one or more lines.
58+
This script then aborts with exit code 1.
6359

6460
Examples
6561
--------

showlinenum.awk

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,10 @@
6767
# above a warning is an added line then the warning applies to the new version
6868
# of the file.
6969
#
70-
# On error a line that starts with ERROR: and is followed by script name and
71-
# error message(s) --which may be one or more lines-- is sent to standard error
72-
# output (stderr). The script then continues to the next line. This is
73-
# unimplemented for now. All errors are treated as fatal errors.
74-
#
75-
# On fatal error a line that starts with FATAL: and is followed by script name
76-
# and error message(s) --which may be one or more lines-- is sent to standard
77-
# error output (stderr). The script then aborts with exit code 1.
70+
# All errors are sent to standard error output (stderr). Currently all errors
71+
# are treated as fatal errors. On fatal error a line that starts with 'FATAL:'
72+
# is followed by script name and error message(s), which may be one or more
73+
# lines. This script then aborts with exit code 1.
7874
#
7975
####
8076
#

0 commit comments

Comments
 (0)