Skip to content

Commit

Permalink
Tidy up some more docs
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman committed Jun 16, 2019
1 parent 17e7e2f commit c64a757
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/ola/io/MemoryBuffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* MemoryBuffer.h
* An derived class of InputBuffer that wraps a memory buffer.
* A derived class of InputBuffer that wraps a memory buffer.
* Copyright (C) 2012 Simon Newton
*/

Expand Down
2 changes: 1 addition & 1 deletion include/ola/thread/ExecutorInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ExecutorInterface {
* - For a given thread, callbacks will be run in the order in which they
* were added.
*
* When queuing callbacks, you ether need to ensure that either:
* When queuing callbacks, you need to ensure that either:
* - The objects used in the callback outlive the ExecutorInterface
* - That the callback is run before the objects are deleted.
*
Expand Down
4 changes: 2 additions & 2 deletions include/olad/Plugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ class AbstractPlugin {
/**
* @brief Start the plugin
*
* Calls start_hook() which can be over-ridden by the derived classes.
* Calls StartHook() which can be overridden by the derived classes.
* @return true if we started ok, false otherwise
*/
virtual bool Start() = 0;

/**
* @brief Stop the plugin
*
* Calls stop_hook() which can be over-ridden by the derived classes.
* Calls StopHook() which can be overridden by the derived classes.
* @return true on success, false on failure
*/
virtual bool Stop() = 0;
Expand Down

0 comments on commit c64a757

Please sign in to comment.