Skip to content

Commit ad70a4e

Browse files
CollieIsCuteanakryiko
authored andcommitted
Improve readability of documentation
add comma after parenthetical expressions Signed-off-by: Tsai,Meng-Shr <[email protected]>
1 parent 95ab6b1 commit ad70a4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ TIME EVENT COMM PID PPID FILENAME/EXIT CODE
111111
## uprobe
112112

113113
`uprobe` is an example of dealing with user-space entry and exit (return) probes,
114-
`uprobe` and `uretprobe` in libbpf lingo. It attached `uprobe` and `uretprobe`
114+
`uprobe` and `uretprobe`, in libbpf lingo. It attached `uprobe` and `uretprobe`
115115
BPF programs to its own functions (`uprobed_add()` and `uprobed_sub()`) and logs input arguments
116116
and return result, respectively, using `bpf_printk()` macro. The user-space
117117
function is triggered once every second:
@@ -197,7 +197,7 @@ $ sudo cat /sys/kernel/debug/tracing/trace_pipe
197197
## kprobe
198198

199199
`kprobe` is an example of dealing with kernel-space entry and exit (return)
200-
probes, `kprobe` and `kretprobe` in libbpf lingo. It attaches `kprobe` and
200+
probes, `kprobe` and `kretprobe`, in libbpf lingo. It attaches `kprobe` and
201201
`kretprobe` BPF programs to the `do_unlinkat()` function and logs the PID,
202202
filename, and return result, respectively, using `bpf_printk()` macro.
203203

0 commit comments

Comments
 (0)