From db8536e1a7726f20f45ae176f492227770f8bb09 Mon Sep 17 00:00:00 2001 From: "SangKa.Z" Date: Mon, 12 Mar 2018 19:58:07 +0800 Subject: [PATCH] docs(pipeable-operators): fix example output --- doc/pipeable-operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pipeable-operators.md b/doc/pipeable-operators.md index 51bd7ddc..799aed72 100644 --- a/doc/pipeable-operators.md +++ b/doc/pipeable-operators.md @@ -116,7 +116,7 @@ interval(1000).pipe( toArray() ) .subscribe(x => console.log(x)); -// [0, 12, 24] +// [0, 2304, 9216] ``` ## 已知问题