doc: fix typos

This commit is contained in:
kilavvy 2025-07-03 13:06:47 +02:00 committed by fanquake
parent d767503b6a
commit 96f8673b87
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ serialization of data structures is probably fine, a `sleep(10s)` not.
TRACEPOINT_SEMAPHORE(example, gated_expensive_argument);
if (TRACEPOINT_ACTIVE(example, gated_expensive_argument)) {
expensive_argument = expensive_calulation();
expensive_argument = expensive_calculation();
TRACEPOINT(example, gated_expensive_argument, expensive_argument);
}
```