@@ -339,7 +339,7 @@ All of the event loops support these features:
339339
340340For most consumers of this package, the underlying event loop implementation is
341341an implementation detail.
342- You should use the [ ` Factory ` ] ( #factory ) to automatically create a new instance.
342+ You should use the [ ` Loop ` class ] ( #loop ) to automatically create a new instance.
343343
344344Advanced! If you explicitly need a certain event loop implementation, you can
345345manually instantiate one of the following classes.
@@ -356,7 +356,7 @@ function and is the only implementation which works out of the box with PHP.
356356This event loop works out of the box on PHP 5.3 through PHP 7+ and HHVM.
357357This means that no installation is required and this library works on all
358358platforms and supported PHP versions.
359- Accordingly, the [ ` Factory ` ] ( #factory ) will use this event loop by default if
359+ Accordingly, the [ ` Loop ` class ] ( #loop ) and the deprecated [ ` Factory ` ] ( #factory ) will use this event loop by default if
360360you do not install any of the event loop extensions listed below.
361361
362362Under the hood, it does a simple ` select ` system call.
@@ -433,7 +433,7 @@ This event loop does only work with PHP 5.
433433An [ unofficial update] ( https://github.com/php/pecl-event-libevent/pull/2 ) for
434434PHP 7 does exist, but it is known to cause regular crashes due to ` SEGFAULT ` s.
435435To reiterate: Using this event loop on PHP 7 is not recommended.
436- Accordingly, the [ ` Factory ` ] ( #factory ) will not try to use this event loop on
436+ Accordingly, neither the [ ` Loop ` object ] ( #loop ) nor the deprecated [ ` Factory ` ] ( #factory ) will try to use this event loop on
437437PHP 7.
438438
439439This event loop is known to trigger a readable listener only if
0 commit comments