diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-10-25 15:03:42 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-10-25 15:03:42 +0000 |
commit | ab6588d2e845899c7da9240b654d6e0ec5e1f54c (patch) | |
tree | 3d17c8e91ceacd62d94efffdb60cc03127a1bb02 /share | |
parent | 5e5ed0e52296e0da539505ea15ba9ac14be1c83e (diff) |
Various fixes; from gluk@ptci.ru
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/style.9 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/style.9 b/share/man/man9/style.9 index 1d04bcb9595..d73bc5e39c0 100644 --- a/share/man/man9/style.9 +++ b/share/man/man9/style.9 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: style.9,v 1.8 2000/10/12 18:06:03 aaron Exp $ +.\" $OpenBSD: style.9,v 1.9 2000/10/25 15:03:41 aaron Exp $ .\" .Dd August 19, 1999 .Dt STYLE 9 @@ -262,7 +262,7 @@ call and the switch statement, unless parts of the switch cascade. Elements in a switch statement that cascade should have a FALLTHROUGH comment. Numerical arguments should be checked for accuracy. -Code that cannot be reached should not have a NOTREACHED comment. +Code that cannot be reached should have a NOTREACHED comment. .Bd -literal -offset 0i while ((ch = getopt(argc, argv, "abn")) != -1) switch (ch) { /* Indent the switch. */ @@ -335,7 +335,7 @@ Second level indents are four spaces. while (cnt < 20) z = a + really + long + statement + that + needs + two lines + gets + indented + four + spaces + - on + the + second + and + subsequent + lines. + on + the + second + and + subsequent + lines; .Ed .Pp Do not add whitespace at the end of a line, and only use tabs |