Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@observable/core",
"version": "0.15.0",
"version": "0.16.0",
"license": "MIT",
"exports": "./mod.ts",
"publish": { "exclude": ["*.test.ts"] }
Expand Down
4 changes: 2 additions & 2 deletions core/observer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export interface Observer<Value = unknown> {
*/
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";
*
Expand Down
Loading