From 1054e931a217ac903c3ee144ee74666c987658ba Mon Sep 17 00:00:00 2001 From: wei Date: Tue, 28 Aug 2018 20:12:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=8F=E5=AE=9E=E6=B5=8B=20buffer=20?= =?UTF-8?q?=E7=AC=AC=E4=B8=80=E4=B8=AA=20500=E6=AF=AB=E7=A7=92=E4=B8=8D?= =?UTF-8?q?=E4=BC=9A=E5=8F=91=E5=87=BA500=E6=AF=AB=E7=A7=92=E6=97=B6?= =?UTF-8?q?=E5=88=BB=E7=9A=84=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/content/operators-time.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/operators-time.md b/docs/content/operators-time.md index 83cfa55..0b2903b 100644 --- a/docs/content/operators-time.md +++ b/docs/content/operators-time.md @@ -156,10 +156,10 @@ TODO ```javascript let scissor$ = Rx.Observable.interval(500) -let emitter$ = Rx.Observable.interval(100).take(10) // 总共会输出10个值 +let emitter$ = Rx.Observable.interval(100).take(10) // 总共会输出9个值 .buffer( scissor$ ) -// 500毫秒后输出: [0,1,2,3,4] 1秒后输出: [5,6,7,8,9] +// 500毫秒后输出: [0,1,2,3] 1秒后输出: [4,5,6,7,8] ``` 弹珠图