diff --git a/spec-dtslint/observables/combineLatest-spec.ts b/spec-dtslint/observables/combineLatest-spec.ts index e7503b45a80..a215ffae6e1 100644 --- a/spec-dtslint/observables/combineLatest-spec.ts +++ b/spec-dtslint/observables/combineLatest-spec.ts @@ -137,7 +137,7 @@ describe('combineLatest({})', () => { const res = combineLatest({ foo: a$, bar: b$, baz: c$ }); // $ExpectType Observable<{ foo: A; bar: B; baz: C; }> }); - it('should not reply upon the excess-properties behavior to identify empty objects', () => { + it('should not rely upon the excess-properties behavior to identify empty objects', () => { const obj = { foo: a$, bar: b$, baz: c$ }; const res = combineLatest(obj); // $ExpectType Observable<{ foo: A; bar: B; baz: C; }> });