@@ -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,8 +356,9 @@ 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
360- you do not install any of the event loop extensions listed below.
359+ Accordingly, the [ ` Loop ` class] ( #loop ) and the deprecated [ ` Factory ` ] ( #factory )
360+ will use this event loop by default if you do not install any of the event loop
361+ extensions listed below.
361362
362363Under the hood, it does a simple ` select ` system call.
363364This system call is limited to the maximum file descriptor number of
@@ -433,8 +434,8 @@ This event loop does only work with PHP 5.
433434An [ unofficial update] ( https://github.com/php/pecl-event-libevent/pull/2 ) for
434435PHP 7 does exist, but it is known to cause regular crashes due to ` SEGFAULT ` s.
435436To 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
437- PHP 7.
437+ Accordingly, neither the [ ` Loop ` object ] ( #loop ) nor the deprecated
438+ [ ` Factory ` ] ( #factory ) will try to use this event loop on PHP 7.
438439
439440This event loop is known to trigger a readable listener only if
440441the stream * becomes* readable (edge-triggered) and may not trigger if the
0 commit comments