From 498415b4abd879a81333f48123cc31ca8f32b6f5 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 24 Mar 2020 06:26:10 -0700 Subject: doc: remove extraneous sentence in events.md Since the previous sentence describes `10` as a default, and the following sentence explains how to modify that default, it is unnecessary to explain that "Obviously, not all events should be limited to just 10 listeners." PR-URL: https://github.com/nodejs/node/pull/32457 Reviewed-By: James M Snell Reviewed-By: Myles Borins --- doc/api/events.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'doc/api') diff --git a/doc/api/events.md b/doc/api/events.md index 750473aa4c5..b27c12cf557 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -740,10 +740,9 @@ added: v0.3.5 By default `EventEmitter`s will print a warning if more than `10` listeners are added for a particular event. This is a useful default that helps finding -memory leaks. Obviously, not all events should be limited to just 10 listeners. -The `emitter.setMaxListeners()` method allows the limit to be modified for this -specific `EventEmitter` instance. The value can be set to `Infinity` (or `0`) -to indicate an unlimited number of listeners. +memory leaks. The `emitter.setMaxListeners()` method allows the limit to be +modified for this specific `EventEmitter` instance. The value can be set to +`Infinity` (or `0`) to indicate an unlimited number of listeners. Returns a reference to the `EventEmitter`, so that calls can be chained. -- cgit v1.2.3