mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
[wpilib] EventLoop docs: Remove BooleanEvent references (NFC) (#5463)
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
#include <wpi/FunctionExtras.h>
|
||||
|
||||
namespace frc {
|
||||
/** The loop polling BooleanEvent objects and executing the actions bound to
|
||||
* them. */
|
||||
/** A declarative way to bind a set of actions to a loop and execute them when
|
||||
* the loop is polled. */
|
||||
class EventLoop {
|
||||
public:
|
||||
EventLoop();
|
||||
@@ -20,7 +20,7 @@ class EventLoop {
|
||||
EventLoop& operator=(const EventLoop&) = delete;
|
||||
|
||||
/**
|
||||
* Bind a new action to run.
|
||||
* Bind a new action to run when the loop is polled.
|
||||
*
|
||||
* @param action the action to run.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user