diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-28 19:28:38 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-28 19:28:38 +0000 |
commit | 2b2282b6ef88e4f31f140acfbcb7465ad56baf50 (patch) | |
tree | f02fa305a37a4876414ea2a49d51fcf5e8d3b417 /docs | |
parent | 5282822dfe4d55da2f73b79c94a25b0484887167 (diff) | |
download | ChibiOS-2b2282b6ef88e4f31f140acfbcb7465ad56baf50.tar.gz ChibiOS-2b2282b6ef88e4f31f140acfbcb7465ad56baf50.tar.bz2 ChibiOS-2b2282b6ef88e4f31f140acfbcb7465ad56baf50.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@680 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ch.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/ch.txt b/docs/ch.txt index de5010805..14caad5e4 100644 --- a/docs/ch.txt +++ b/docs/ch.txt @@ -512,17 +512,17 @@ /** @} */
/**
- * @defgroup CondVars Conditional Variables
+ * @defgroup CondVars Condition Variables
* @{
- * Conditional Variables and threads synchronization.
+ * Condition Variables and threads synchronization.
* <h2>Operation mode</h2>
* The condition variable is a synchronization object meant to be used inside
* a zone protected by a @p Mutex. Mutexes and CondVars together can implement
* a Monitor construct.<br>
- * In order to use the Conditional Variables APIs the @p CH_USE_CONDVARS
+ * In order to use the Condition Variables APIs the @p CH_USE_CONDVARS
* option must be specified in @p chconf.h.<br><br>
- * @file condvars.h Conditional Variables macros and structures.
- * @file chcond.c Conditional Variables code.
+ * @file condvars.h Condition Variables macros and structures.
+ * @file chcond.c Condition Variables code.
*/
/** @} */
|