diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-03-13 19:58:42 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-03-13 19:58:42 +0000 |
commit | 66b5281887fd0b549fb1c749e60e79cd3ac32986 (patch) | |
tree | 789e9e9e2743b415197e15ba6a661391d1727edd /usr.bin/ktrace | |
parent | 638018e1fd7752caa1e08dd49033f0d1411fee11 (diff) |
remove the first comma from constructs like ", and," and ", or,": you can use
"and" and "or" to join sentence clauses, and you can use commas, but both hinders
reading;
Diffstat (limited to 'usr.bin/ktrace')
-rw-r--r-- | usr.bin/ktrace/ktrace.1 | 8 | ||||
-rw-r--r-- | usr.bin/ktrace/ltrace.1 | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/ktrace/ktrace.1 b/usr.bin/ktrace/ktrace.1 index 3468674cd38..9780efdbd0d 100644 --- a/usr.bin/ktrace/ktrace.1 +++ b/usr.bin/ktrace/ktrace.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ktrace.1,v 1.24 2013/06/01 09:51:28 miod Exp $ +.\" $OpenBSD: ktrace.1,v 1.25 2015/03/13 19:58:41 jmc Exp $ .\" .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)ktrace.1 8.1 (Berkeley) 6/6/93 .\" -.Dd $Mdocdate: June 1 2013 $ +.Dd $Mdocdate: March 13 2015 $ .Dt KTRACE 1 .Os .Sh NAME @@ -64,7 +64,7 @@ A traced process can generate enormous amounts of log data quickly; it is strongly suggested that users memorize how to disable tracing before attempting to trace a process. The following command is sufficient to disable tracing on all user owned -processes, and, if executed by root, all processes: +processes and, if executed by root, all processes: .Pp .Dl $ ktrace -C .Pp @@ -85,7 +85,7 @@ This eliminates the resulting .Xr ld.so 1 relocation sequences. .It Fl C -Disable tracing on all user owned processes, and, if executed by root, all +Disable tracing on all user owned processes and, if executed by root, all processes in the system. .It Fl c Clear the trace points associated with the trace file or any specified diff --git a/usr.bin/ktrace/ltrace.1 b/usr.bin/ktrace/ltrace.1 index 543bd9f1655..66217f229aa 100644 --- a/usr.bin/ktrace/ltrace.1 +++ b/usr.bin/ktrace/ltrace.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ltrace.1,v 1.5 2014/04/04 21:34:47 miod Exp $ +.\" $OpenBSD: ltrace.1,v 1.6 2015/03/13 19:58:41 jmc Exp $ .\" .\" Copyright (c) 2013 Miodrag Vallat. .\" @@ -43,7 +43,7 @@ .\" .\" from: @(#)ktrace.1 8.1 (Berkeley) 6/6/93 .\" -.Dd $Mdocdate: April 4 2014 $ +.Dd $Mdocdate: March 13 2015 $ .Dt LTRACE 1 .Os .Sh NAME @@ -80,7 +80,7 @@ A traced process can generate enormous amounts of log data quickly; it is strongly suggested that users memorize how to disable tracing before attempting to trace a process. The following command is sufficient to disable tracing on all user owned -processes, and, if executed by root, all processes: +processes and, if executed by root, all processes: .Pp .Dl $ ktrace -C .Pp |