This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix spelling typo in man pages


This patch fix some spelling typo in man pages.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 man/dtrace.1           | 4 ++--
 man/error::fault.7stap | 2 +-
 man/stap-server.8      | 2 +-
 man/stapprobes.3stap   | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/man/dtrace.1 b/man/dtrace.1
index 3425e07..7e56aee 100644
--- a/man/dtrace.1
+++ b/man/dtrace.1
@@ -1,7 +1,7 @@
 .\" -*- nroff -*-
 .TH DTRACE 1 
 .SH NAME
-dtrace \- Dtrace compatibile user application static probe generation tool.
+dtrace \- Dtrace compatible user application static probe generation tool.
 
 .\" macros
 .\" do not nest SAMPLEs
@@ -102,7 +102,7 @@ the \fI"test.o"\fR object file, which must therefore be linked into an
 application.
 .PP
 Sometimes, semaphore variables are not necessary nor helpful.  Skipping
-them can simplfy the build process, by omitting the extra \fI"test.o"\fR
+them can simplify the build process, by omitting the extra \fI"test.o"\fR
 file.  To skip dependence upon semaphore variables, include \fI"<sys/sdt.h>"\fR
 within the application before \fI"test.h"\fR:
 .SAMPLE
diff --git a/man/error::fault.7stap b/man/error::fault.7stap
index b1bf571..19f12c9 100644
--- a/man/error::fault.7stap
+++ b/man/error::fault.7stap
@@ -37,7 +37,7 @@ It may be possible to adjust the target program, to make it more likely
 that needed context variables are paged in when systemtap looks for them.
 Consider adding some lightweight processing on the key variables, like a
 .I strlen(foo)
-for a string, or iterating acrosse elements of an array or linked list,
+for a string, or iterating across elements of an array or linked list,
 or touching a few bytes of a heap-allocated block.  The idea is to trigger
 any page faults in the target program, before systemtap would need to (but can't).
 .SH SEE ALSO
diff --git a/man/stap-server.8 b/man/stap-server.8
index 182cbf2..8a5b1fa 100644
--- a/man/stap-server.8
+++ b/man/stap-server.8
@@ -199,7 +199,7 @@ process id.
 This option allows the specification of a server configuration by process id.
 When \fB\-p\fR is specified, a currently running server with the given process
 id will be searched for. If no such server is found, it is an error. If a server
-with the given procss id is found, the
+with the given process id is found, the
 \fB\-a\fR, \fB\-r\fR, \fB\-I\fR, \fB\-R\fR, \fB\-B\fR and \fB\-u\fR options for
 that server will be used as if they were specified on the command line.
 
diff --git a/man/stapprobes.3stap b/man/stapprobes.3stap
index d6d03d2..a5e0922 100644
--- a/man/stapprobes.3stap
+++ b/man/stapprobes.3stap
@@ -450,7 +450,7 @@ will probe both callees of the target function, as well as callees of
 those callees. And \fB.callees(3)\fR goes one level deeper, etc...
 A callee probe at depth N is only triggered when the N callers in the
 callstack match those that were statically determined during analysis
-(this also may be overriden using -DSTAP_CALLEE_MATCHALL).
+(this also may be overridden using -DSTAP_CALLEE_MATCHALL).
 .RE
 .PP
 In the above list of probe points, MPATTERN stands for a string literal
-- 
2.1.2.374.g63a4513


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]