From 156fa1ed18aebcb3c162b9e32e01eb72b711b36f Mon Sep 17 00:00:00 2001 From: Brady Svedin Date: Sun, 1 Oct 2023 19:26:09 -0600 Subject: [PATCH] Fix to Observable skip ts equivalent. --- rxplus/src/main/equivalents/ts/rx.ts.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rxplus/src/main/equivalents/ts/rx.ts.yaml b/rxplus/src/main/equivalents/ts/rx.ts.yaml index 6c9792e..3d257d4 100644 --- a/rxplus/src/main/equivalents/ts/rx.ts.yaml +++ b/rxplus/src/main/equivalents/ts/rx.ts.yaml @@ -329,7 +329,7 @@ - id: io.reactivex.rxjava3.core.Observable.skip type: call template: - pattern: ~this~.pipe(skip(0)) + pattern: ~this~.pipe(skip(~0~)) imports: skip: rxjs/operators @@ -1704,7 +1704,7 @@ - id: io.reactivex.rxjava3.core.Flowable.skip type: call template: - pattern: ~this~.pipe(skip(0)) + pattern: ~this~.pipe(skip(~0~)) imports: skip: rxjs/operators