From 9026a36f6fd188a7b2620ad7b8fd0acea5921f18 Mon Sep 17 00:00:00 2001 From: Jayson Monterroso Date: Fri, 7 Jun 2019 06:42:57 -0600 Subject: [PATCH] docs(operators): fix marble-diagram image src (#4789) * docs(operators): fix marble-diagram image src Updating to proper marble diagram image src property for buffer operator --- src/internal/operators/buffer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/operators/buffer.ts b/src/internal/operators/buffer.ts index 31b4bb3987..a1abae420e 100644 --- a/src/internal/operators/buffer.ts +++ b/src/internal/operators/buffer.ts @@ -12,7 +12,7 @@ import { OperatorFunction } from '../types'; * Collects values from the past as an array, and emits * that array only when another Observable emits. * - * ![](content/img/buffer.png) + * ![](buffer.png) * * Buffers the incoming Observable values until the given `closingNotifier` * Observable emits a value, at which point it emits the buffer on the output