Skip to content

Commit b477a0b

Browse files
committed
Update README.
1 parent 8df8560 commit b477a0b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The Observable standard library.
66

7-
For examples, see https://beta.observablehq.com/@mbostock/standard-library.
7+
For examples, see https://observablehq.com/@observablehq/standard-library.
88

99
## API Reference
1010

@@ -217,7 +217,7 @@ In general, you probably want to use the [html](#html) tagged template literal i
217217

218218
Returns a new unique *identifier*. If *name* is specified, the *identifier*.id will be derived from the specified *name*, which may be useful for debugging. If DOM.uid is called repeatedly with the same *name*, every returned *identifier* is still unique (that is, different). Identifiers are useful in SVG: use *identifier*.href for IRI references, such as the [xlink:href](https://www.w3.org/TR/SVG/animate.html#HrefAttribute) attribute; use *identifier*.toString for functional notation, such as the [clip-path](https://www.w3.org/TR/SVG/masking.html#ClipPathProperty) presentation attribute.
219219

220-
For example, to [clip the Mona Lisa](https://beta.observablehq.com/@mbostock/svg-clipping-test) to a circle of radius 320px:
220+
For example, to [clip the Mona Lisa](https://observablehq.com/@mbostock/svg-clipping-test) to a circle of radius 320px:
221221

222222
```js
223223
{
@@ -242,7 +242,7 @@ The use of DOM.uid is strongly recommended over hand-coding as it ensures that y
242242

243243
### Files
244244

245-
See [Reading Local Files](https://beta.observablehq.com/@mbostock/reading-local-files) for examples.
245+
See [Reading Local Files](https://observablehq.com/@mbostock/reading-local-files) for examples.
246246

247247
<a href="#Files_buffer" name="Files_buffer">#</a> Files.<b>buffer</b>(<i>file</i>) [<>](https://github.com/observablehq/stdlib/blob/master/src/files/buffer.js "Source")
248248

@@ -318,7 +318,7 @@ The resolved value is likewise dependent on the *input*.type as follows:
318318

319319
The specified *input* need not be an HTMLInputElement, but it must support the *target*.addEventListener and *target*.removeEventListener methods of the [EventTarget interface](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener).
320320

321-
Generators.input is used by Observable’s [viewof operator](https://beta.observablehq.com/@mbostock/a-brief-introduction-to-viewof) to define the current value of a view, and is based on [Generators.observe](#Generators_observe). One often does not use Generators.input directly, but it can be used to define a [generator cell](https://beta.observablehq.com/@mbostock/generator-cells-functions-and-objects) exposing the current value of an input, and you can also read the yielded values by hand. For example, to accumulate the first four values:
321+
Generators.input is used by Observable’s [viewof operator](https://observablehq.com/@observablehq/a-brief-introduction-to-viewof) to define the current value of a view, and is based on [Generators.observe](#Generators_observe). One often does not use Generators.input directly, but it can be used to define a [generator cell](https://observablehq.com/@mbostock/generator-cells-functions-and-objects) exposing the current value of an input, and you can also read the yielded values by hand. For example, to accumulate the first four values:
322322

323323
```js
324324
{
@@ -370,7 +370,7 @@ Generators.observe(change => {
370370

371371
(See also [Generators.input](#Generators_input).)
372372

373-
Generators.observe is typically used to define a [generator cell](https://beta.observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
373+
Generators.observe is typically used to define a [generator cell](https://observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
374374

375375
```js
376376
{
@@ -411,7 +411,7 @@ Generators.queue(change => {
411411

412412
(See also [Generators.input](#Generators_input).)
413413

414-
Generators.queue is typically used to define a [generator cell](https://beta.observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
414+
Generators.queue is typically used to define a [generator cell](https://observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
415415

416416
```js
417417
{

0 commit comments

Comments
 (0)