From 889f8ef8be025c5c580594f0b631daf50a2d3405 Mon Sep 17 00:00:00 2001 From: Nikhil Simon Toppo Date: Thu, 23 Oct 2025 18:09:30 +0530 Subject: [PATCH] docs: fix mismatched return type (#7172) Co-authored-by: Jay --- lib/core/InterceptorManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/InterceptorManager.js b/lib/core/InterceptorManager.js index 6657a9d..ac1b61b 100644 --- a/lib/core/InterceptorManager.js +++ b/lib/core/InterceptorManager.js @@ -30,7 +30,7 @@ class InterceptorManager { * * @param {Number} id The ID that was returned by `use` * - * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise + * @returns {void} */ eject(id) { if (this.handlers[id]) {