From 92b457f2004d72fb2c9aefe3eb905bb33a36d6da Mon Sep 17 00:00:00 2001 From: Brian Cavalier Date: Fri, 20 May 2016 10:24:23 -0400 Subject: [PATCH] More draft ES observable clarification --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 010a9c09..660f4fc4 100644 --- a/docs/api.md +++ b/docs/api.md @@ -123,7 +123,7 @@ A stream that emits `a`, then `b`, then `c`, then nothing, then `d`, then `e`, t ## Draft ES Observable interop -Most.js implements a subset of the [draft ES Observable proposal spec](https://github.com/zenparsing/es-observable): +Most.js implements a subset of the [draft ES Observable proposal](https://github.com/zenparsing/es-observable): * `stream[Symbol.observable]() -> Observable` returns a compatible observable with a `subscribe` method that other implementations can consume. * [`most.from(observable) -> Stream`](#mostfrom) coerces a compliant `observable` (one that provides `[Symbol.observable]()`) to a most.js stream.