]> sourceware.org Git - systemtap.git/commitdiff
Few typos in langref and tutorial
authorMiroslav Franc <mfranc@redhat.com>
Wed, 21 Aug 2013 11:41:25 +0000 (13:41 +0200)
committerMark Wielaard <mjw@redhat.com>
Wed, 21 Aug 2013 11:41:25 +0000 (13:41 +0200)
doc/langref.tex
doc/tutorial.tex

index caf9016b40a55ca2bac756d76efe33b1cafdc4fc..d0c0508ba3d222b1b03920ee62ab8706ce531393 100644 (file)
@@ -94,7 +94,7 @@ problem. SystemTap was designed to eliminate the need for a developer to
 go through the tedious instrument, recompile, install, and reboot sequence
 normally required to collect this kind of data. To do this, it provides a
 simple command-line interface and scripting language for writing
-instrumenation for both kernel and user space.
+instrumentation for both kernel and user space.
 With SystemTap, developers, system administrators, and users can easily write
 scripts that gather and manipulate system data that is otherwise unavailable
 from standard Linux tools. Users of SystemTap will find it to be a significant
@@ -989,8 +989,8 @@ General syntax:
 
 \begin{vindent}
 \begin{verbatim}
-kernel.function("func[@file]"
-module("modname").function("func[@file]"
+kernel.function("func[@file]")
+module("modname").function("func[@file]")
 \end{verbatim}
 \end{vindent}
 Examples:
index a5a4c17aeeba728d026e88209b9e0e6d10959287..7b4fde505193ed188c6751aca31b8fde72ab83ea 100644 (file)
@@ -470,7 +470,7 @@ Systemtap allows limited dereferencing of such pointer chains.
 Two functions, \verb+user_string+ and \verb+kernel_string+, can copy
 \verb+char *+ target variables into systemtap strings.
 Figure~\ref{fig:inode-watch} demonstrates one way to monitor a
-particular file (identifed by device number and inode number).
+particular file (identified by device number and inode number).
 The script selects the appropriate variants of \verb+dev_nr+
 and\verb+inode_nr+ based on the kernel version.
 This example also demonstrates passing numeric command-line arguments
@@ -569,7 +569,7 @@ indexed by some tuple of thread numbers, processor ids, names, time,
 and so on.  Systemtap offers associative arrays for this purpose.
 These arrays are implemented as hash tables with a maximum size that
 is fixed at startup.  Because they are too large to be created
-dynamically for inidividual probes handler runs, they must be declared
+dynamically for individual probes handler runs, they must be declared
 as global.  \nomenclature{array}{A global
 \verb+[+$k_1,k_2,\ldots,k_n\verb+]+\rightarrow value$
 associative lookup table, with a string,
This page took 0.03309 seconds and 5 git commands to generate.