summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ghedini <al3xbio@gmail.com>2019-12-22 15:34:23 +0100
committergregor herrmann <gregoa@debian.org>2019-12-22 15:34:23 +0100
commiteb964ab115aa3e3f9c72d80ef1edd4d465429a1c (patch)
tree374a453e52ee27bf6fb540784168f349ec07dc92
parent3e29423e9119caf7735fa9321af80f882a2e512e (diff)
Fix a spelling error calender -> calender
Origin: vendor Forwarded: no Reviewed-by: gregor herrmann <gregoa@debian.org> Last-Update: 2018-12-25 Gbp-Pq: Name fix-spelling-error.patch
-rw-r--r--EV.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/EV.pm b/EV.pm
index 551f2c2..8547d09 100644
--- a/EV.pm
+++ b/EV.pm
@@ -277,7 +277,7 @@ C<resume> directly afterwards to resume timer processing.
Effectively, all C<timer> watchers will be delayed by the time spend
between C<suspend> and C<resume>, and all C<periodic> watchers
will be rescheduled (that is, they will lose any events that would have
-occured while suspended).
+occurred while suspended).
After calling C<suspend> you B<must not> call I<any> function on the given
loop other than C<resume>, and you B<must not> call C<resume>
@@ -366,7 +366,7 @@ C<EV::READ> and C<EV::WRITE>) happened on the file descriptor C<$fd>.
=item EV::feed_signal_event $signal
Feed a signal event into the default loop. EV will react to this call as
-if the signal specified by C<$signal> had occured.
+if the signal specified by C<$signal> had occurred.
=item EV::feed_signal $signal
@@ -1103,7 +1103,7 @@ kqueue to still be able to handle a large number of sockets:
my $socket_loop;
- # check wether we use SELECT or POLL _and_ KQUEUE is supported
+ # check whether we use SELECT or POLL _and_ KQUEUE is supported
if (
(EV::backend & (EV::BACKEND_POLL | EV::BACKEND_SELECT))
&& (EV::supported_backends & EV::embeddable_backends & EV::BACKEND_KQUEUE)