Fix typos in comments and documentation.

This commit is contained in:
Nathan Hartman
2020-03-16 15:42:34 -04:00
committed by patacongo
parent 430a2178fb
commit a5e643b0cd
109 changed files with 413 additions and 455 deletions
+2 -2
View File
@@ -47,7 +47,7 @@
*
* Description:
* Queue work to be performed at a later time. All queued work will be
* performed on the worker thread of of execution (not the caller's).
* performed on the worker thread of execution (not the caller's).
*
* The work structure is allocated by caller, but completely managed by
* the work queue logic. The caller should never modify the contents of
@@ -120,7 +120,7 @@ static void work_qqueue(FAR struct kwork_wqueue_s *wqueue,
*
* Description:
* Queue kernel-mode work to be performed at a later time. All queued
* work will be performed on the worker thread of of execution (not the
* work will be performed on the worker thread of execution (not the
* caller's).
*
* The work structure is allocated and must be initialized to all zero by