Skip to content

Commit

Permalink
Fix cRIO::Task typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pkubanek committed Apr 25, 2024
1 parent 1641101 commit 95f550f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cRIO/Event.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ class Event : public Task {
virtual ~Event();

task_return_t run() override {
recieved();
received();
return Task::DONT_RESCHEDULE;
}

virtual void recieved() = 0;
virtual void received() = 0;
};

} // namespace cRIO
Expand Down

0 comments on commit 95f550f

Please sign in to comment.