From 05bb4fa3ecfd1b964e8f3a687c8599461d0f7d4f Mon Sep 17 00:00:00 2001 From: Nelson Dominguez <18242749+ekkolon@users.noreply.github.com> Date: Sat, 3 Dec 2022 19:36:52 +0100 Subject: [PATCH] docs(ReplaySubject): fix typo in constructor jsdoc (#7113) --- src/internal/ReplaySubject.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/ReplaySubject.ts b/src/internal/ReplaySubject.ts index 569469dd57..a81d7353ac 100644 --- a/src/internal/ReplaySubject.ts +++ b/src/internal/ReplaySubject.ts @@ -40,7 +40,7 @@ export class ReplaySubject extends Subject { /** * @param bufferSize The size of the buffer to replay on subscription - * @param windowTime The amount of time the buffered items will say buffered + * @param windowTime The amount of time the buffered items will stay buffered * @param timestampProvider An object with a `now()` method that provides the current timestamp. This is used to * calculate the amount of time something has been buffered. */