From c7f7db7ce6b7984d9586a48ed6aa9e39d9899f49 Mon Sep 17 00:00:00 2001 From: Andre Staltz Date: Wed, 21 Dec 2016 16:03:36 +0200 Subject: [PATCH] test(take): fix typo in test title --- tests/operator/take.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/operator/take.ts b/tests/operator/take.ts index 5f2b9c5..b37e5bb 100644 --- a/tests/operator/take.ts +++ b/tests/operator/take.ts @@ -21,7 +21,7 @@ describe('Stream.prototype.take', () => { stream.addListener(listener); }); - it('should return a Stream if input stream is a tream', (done: any) => { + it('should return a Stream if input stream is a Stream', (done: any) => { const input = xs.of(1, 2, 3); assert.strictEqual(input instanceof Stream, true); const stream: Stream = input.take(2);