Merge pull request #13024 from SAY-5/fix-typo-occured

dragonball: fix typo in VsockEpollListener doc comment
This commit is contained in:
Fabiano Fidêncio
2026-05-18 20:39:33 +02:00
committed by GitHub

View File

@@ -153,7 +153,7 @@ pub trait VsockEpollListener: AsRawFd {
/// Get the set of events for which the listener wants to be notified.
fn get_polled_evset(&self) -> epoll::Events;
/// Notify the listener that one ore more events have occured.
/// Notify the listener that one or more events have occurred.
fn notify(&mut self, evset: epoll::Events);
}