Fix some typos in comments.

This commit is contained in:
Matous Pokorny 2019-04-15 07:56:53 -06:00 committed by Gregory Nutt
parent 4b2264fa16
commit 1e54a14c9f
2 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ static int lm75_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
}
break;
/* Wrtie to the configuration register. Arg: uint8_t value */
/* Write to the configuration register. Arg: uint8_t value */
case SNIOC_WRITECONF:
ret = lm75_writeconf(priv, (uint8_t)arg);

View File

@ -471,7 +471,7 @@ int nxsig_timedwait(FAR const sigset_t *set, FAR struct siginfo *info,
* is forever.
*
* If the info argument is non-NULL, the selected signal number is stored
* in the si_signo member and the cause of the signal is store din the
* in the si_signo member and the cause of the signal is stored in the
* si_code member. The content of si_value is only meaningful if the
* signal was generated by sigqueue().
*