diff --git a/core/deno.json b/core/deno.json index af829f4..e338cbd 100644 --- a/core/deno.json +++ b/core/deno.json @@ -1,6 +1,6 @@ { "name": "@observable/core", - "version": "0.15.0", + "version": "0.16.0", "license": "MIT", "exports": "./mod.ts", "publish": { "exclude": ["*.test.ts"] } diff --git a/core/observer.ts b/core/observer.ts index 48c0a1b..9aa1b2a 100644 --- a/core/observer.ts +++ b/core/observer.ts @@ -34,8 +34,8 @@ export interface Observer { */ export interface ObserverConstructor { /** - * Creates and return an object that provides a standard way to [consume](https://jsr.io/@observable/core#consumer) - * a sequence of values (either finite or infinite). + * Creates and returns an object that provides a standard way to [consume](https://jsr.io/@observable/core#consumer) + * a sequence of {@linkcode Value|values} (either finite or infinite). * ```ts * import { Observer } from "@observable/core"; *