aboutsummaryrefslogtreecommitdiff
path: root/docs/ref/api/thread.md
diff options
context:
space:
mode:
authormochalins <117967760+mochalins@users.noreply.github.com>2025-05-23 17:02:52 +0900
committerGarrett D'Amore <garrett@damore.org>2025-06-02 07:24:06 -0700
commit4e1ffdca6d97c1bddc460835c94b16bc64284861 (patch)
tree80c27b0e509c8d7001619af27a33794f4bcad3c4 /docs/ref/api/thread.md
parent1323aece0712522ccb2bf432b5085889a3513fa8 (diff)
downloadnng-4e1ffdca6d97c1bddc460835c94b16bc64284861.tar.gz
nng-4e1ffdca6d97c1bddc460835c94b16bc64284861.tar.bz2
nng-4e1ffdca6d97c1bddc460835c94b16bc64284861.zip
Fix typos across docs, comments, and CMake
Diffstat (limited to 'docs/ref/api/thread.md')
-rw-r--r--docs/ref/api/thread.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/api/thread.md b/docs/ref/api/thread.md
index 3286f71a..20b4eea1 100644
--- a/docs/ref/api/thread.md
+++ b/docs/ref/api/thread.md
@@ -32,7 +32,7 @@ applications.
typedef struct nng_thread nng_thread;
```
-The {{i:`nng_thread`}} structure represnts a thread, which is a single execution context.
+The {{i:`nng_thread`}} structure represents a thread, which is a single execution context.
A given thread will have its own stack, and CPU registers. However global state, as well
as values allocated on the heap, will be shared and accessible to all threads in the system
(See the [Synchronization][synchronization] chapter for functions to help with data sharing between different threads.)