diff --git a/packages/rxjs/src/internal/operators/skipWhile.ts b/packages/rxjs/src/internal/operators/skipWhile.ts index d4fd6912cb..6daca67068 100644 --- a/packages/rxjs/src/internal/operators/skipWhile.ts +++ b/packages/rxjs/src/internal/operators/skipWhile.ts @@ -11,8 +11,7 @@ export function skipWhile(predicate: (value: T, index: number) => boolean): M * * ![](skipWhile.png) * - * Skips all the notifications with a truthy predicate. It will not skip the notifications when the predicate is falsy. - * It can also be skipped using index. Once the predicate is true, it will not be called again. + * Skips all the notifications where the given predicate returns a truthy value. Once the predicate is falsey, it will not be called again, and all further notifications will be emitted. * * ## Example *