aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/src
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/src')
-rw-r--r--os/kernel/src/chregistry.c2
-rw-r--r--os/kernel/src/chsem.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/os/kernel/src/chregistry.c b/os/kernel/src/chregistry.c
index 95893de85..e95ad21a8 100644
--- a/os/kernel/src/chregistry.c
+++ b/os/kernel/src/chregistry.c
@@ -33,7 +33,7 @@
* - <b>Next</b>, returns the next, in creation order, active thread
* in the system.
* .
- * The registry is meant to be mainly a debug feature, as example,
+ * The registry is meant to be mainly a debug feature, for example,
* using the registry a debugger can enumerate the active threads
* in any given moment or the shell can print the active threads
* and their state.<br>
diff --git a/os/kernel/src/chsem.c b/os/kernel/src/chsem.c
index 58cd94808..3e1d2ce88 100644
--- a/os/kernel/src/chsem.c
+++ b/os/kernel/src/chsem.c
@@ -47,7 +47,7 @@
* .
* Semaphores can be used as guards for mutual exclusion zones
* (note that mutexes are recommended for this kind of use) but
- * also have other uses, queues guards and counters as example.<br>
+ * also have other uses, queues guards and counters for example.<br>
* Semaphores usually use a FIFO queuing strategy but it is possible
* to make them order threads by priority by enabling
* @p CH_USE_SEMAPHORES_PRIORITY in @p chconf.h.