[wpilib] EventLoop docs: Remove BooleanEvent references (NFC) (#5463)

This commit is contained in:
Gold856
2023-07-23 17:22:04 -04:00
committed by GitHub
parent c065ae1fcf
commit 5ec7f18bdc
2 changed files with 7 additions and 5 deletions

View File

@@ -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.
*/