aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-11 11:04:05 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-11 11:04:05 +0000
commit009e8d28c38ef6b6797318aee29ca90910753988 (patch)
tree19403e97445d93cb92d219b7f066e3a070a3547a /os/kernel/src
parenta7b039fae4798eb96b28a8cb59267d26fb9261a9 (diff)
downloadChibiOS-009e8d28c38ef6b6797318aee29ca90910753988.tar.gz
ChibiOS-009e8d28c38ef6b6797318aee29ca90910753988.tar.bz2
ChibiOS-009e8d28c38ef6b6797318aee29ca90910753988.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2346 35acf78f-673a-0410-8e92-d51de3d6d3f4
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.