diff options
author | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-09-25 19:50:15 +0000 |
---|---|---|
committer | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-09-25 19:50:15 +0000 |
commit | 0a24112ccdf69df68f478a8b84998052aba68a8b (patch) | |
tree | c8fa7ac7c96346c0a4ad227f22891d619da5b1d1 | |
parent | 0de5e010899b1b8e1f81d35af29d6e880a501db0 (diff) | |
download | ChibiOS-0a24112ccdf69df68f478a8b84998052aba68a8b.tar.gz ChibiOS-0a24112ccdf69df68f478a8b84998052aba68a8b.tar.bz2 ChibiOS-0a24112ccdf69df68f478a8b84998052aba68a8b.zip |
Fix comment.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10713 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/src/hal_pal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/src/hal_pal.c b/os/hal/src/hal_pal.c index 9cffc6d69..b46c9e7ea 100644 --- a/os/hal/src/hal_pal.c +++ b/os/hal/src/hal_pal.c @@ -161,7 +161,7 @@ void palSetLineCallbackI(ioline_t line, palcallback_t cb, void *arg) { * @param[in] pad pad number within the port
* @returns The operation state.
* @retval MSG_OK if an edge has been detected.
- * @retval MSG_TIMEOUT if a timeout occurred before an edge cound be detected.
+ * @retval MSG_TIMEOUT if a timeout occurred before an edge could be detected.
* @retval MSG_RESET if the event has been disabled while the thread was
* waiting for an edge.
*
@@ -180,7 +180,7 @@ msg_t palWaitPadTimeoutS(ioportid_t port, iopadid_t pad, systime_t timeout) { * @param[in] timeout operation timeout
* @returns The operation state.
* @retval MSG_OK if an edge has been detected.
- * @retval MSG_TIMEOUT if a timeout occurred before an edge cound be detected.
+ * @retval MSG_TIMEOUT if a timeout occurred before an edge could be detected.
* @retval MSG_RESET if the event has been disabled while the thread was
* waiting for an edge.
*
|