Skip to content

Commit

Permalink
fix typo in several pages (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneutt authored Jan 24, 2023
1 parent 594980b commit 330dd3a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/book/aya/aya-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

!!! example "Source Code"

Full code for the example in this chapter is availble [here](https://github.com/aya-rs/book/tree/main/examples/aya-tool)
Full code for the example in this chapter is available [here](https://github.com/aya-rs/book/tree/main/examples/aya-tool)

Very often you will need to use type definitions that your running Linux kernel
uses in its source code. For example, you might need a definition of
Expand Down
2 changes: 1 addition & 1 deletion docs/book/programs/lsm.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

!!! example "Source Code"

Full code for the example in this chapter is availble [here](https://github.com/aya-rs/book/tree/main/examples/lsm-nice)
Full code for the example in this chapter is available [here](https://github.com/aya-rs/book/tree/main/examples/lsm-nice)
## What is LSM

LSM stands for [Linux Security Modules](https://en.wikipedia.org/wiki/Linux_Security_Modules)
Expand Down
4 changes: 2 additions & 2 deletions docs/book/programs/probes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

!!! example "Source Code"

Full code for the example in this chapter is availble [here](https://github.com/aya-rs/book/tree/main/examples/kprobetcp).
Full code for the example in this chapter is available [here](https://github.com/aya-rs/book/tree/main/examples/kprobetcp).

# What are the probes in eBPF?

The probe BPF programs attach to kernel (kprobes) or user-side (uprobes) functions and are able to access the function parameters of those functions. You can find more information about probes in the [kernel documentation](https://docs.kernel.org/trace/kprobes.html), icluding the difference between kprobes and kretprobes.
The probe BPF programs attach to kernel (kprobes) or user-side (uprobes) functions and are able to access the function parameters of those functions. You can find more information about probes in the [kernel documentation](https://docs.kernel.org/trace/kprobes.html), including the difference between kprobes and kretprobes.

## Example project

Expand Down

0 comments on commit 330dd3a

Please sign in to comment.