[typo] Fix typo in poller.h (#32990)

Spin off from https://github.com/grpc/grpc/pull/32701.

<!--

If you know who should review your pull request, please assign it to
that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the
appropriate
lang label.

-->
pull/32994/head
Yijie Ma 2 years ago committed by GitHub
parent 3541ef5d69
commit 7ae9bd00bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/core/lib/event_engine/poller.h

@ -43,12 +43,12 @@ class Poller {
// * Poller::WorkResult::kKicked if it was Kicked. A poller that was Kicked
// may still process some events and if so, it may have run the
// schedule_poll_again callback function synchronously. When the poller
// returns Poller::WorkResult::kKicked tts upto the user to determine
// returns Poller::WorkResult::kKicked it's up to the user to determine
// if the schedule_poll_again callback has run or not.
// * Poller::WorkResult::kDeadlineExceeded if timeout occurred. The
// schedule_poll_again callback is not run in this case.
// * Poller::WorkResult::kOk, otherwise indicating that the
// schedule_poll_again callback function was run synchonously before some
// schedule_poll_again callback function was run synchronously before some
// events were processed.
virtual WorkResult Work(EventEngine::Duration timeout,
absl::FunctionRef<void()> schedule_poll_again) = 0;

Loading…
Cancel
Save