summaryrefslogtreecommitdiff
path: root/doc/HACKING/tracing/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/HACKING/tracing/README.md')
-rw-r--r--doc/HACKING/tracing/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/HACKING/tracing/README.md b/doc/HACKING/tracing/README.md
index d9fb2e5341..f34709bf3a 100644
--- a/doc/HACKING/tracing/README.md
+++ b/doc/HACKING/tracing/README.md
@@ -47,7 +47,7 @@ A trace event in tor has the following standard format:
tor_trace(subsystem, event_name, args...);
```
-The `subsystem` parameter is the name of the subsytem the trace event is in.
+The `subsystem` parameter is the name of the subsystem the trace event is in.
For example that could be "scheduler" or "vote" or "hs". The idea is to add
some context to the event so when we collect them we know where it's coming
from.
@@ -135,7 +135,7 @@ This is pretty easy. Let's say you want to add a trace event in
#include "lib/trace/events.h"
```
-Then, the `tor_trace()` macro can be used with the specific format detailled
+Then, the `tor_trace()` macro can be used with the specific format detailed
before in a previous section. As an example:
```c