Skip to content

Commit

Permalink
Fix typos (#7687)
Browse files Browse the repository at this point in the history
  • Loading branch information
KNnut committed Sep 26, 2020
1 parent ab96619 commit e0d4696
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions std/async/README.md
Expand Up @@ -11,7 +11,7 @@ The following functions and class are exposed in `mod.ts`
Creates a Promise with the `reject` and `resolve` functions.

```typescript
import { deferred } from "https://deno.land.std/async/mod.ts";
import { deferred } from "https://deno.land/std/async/mod.ts";

const p = deferred<number>();
// ...
Expand All @@ -23,7 +23,7 @@ p.resolve(42);
Resolve a Promise after a given amount of milliseconds

```typescript
import { delay } from "https://deno.land.std/async/mod.ts";
import { delay } from "https://deno.land/std/async/mod.ts";

// ...
const delayedPromise = delay(100);
Expand All @@ -41,7 +41,7 @@ yielded from the iterator) does not matter. If there is any result, it is
discarded.

```typescript
import { MuxAsyncIterator } from "https://deno.land.std/async/mod.ts";
import { MuxAsyncIterator } from "https://deno.land/std/async/mod.ts";

async function* gen123(): AsyncIterableIterator<number> {
yield 1;
Expand Down Expand Up @@ -71,7 +71,7 @@ transforms are done concurrently, with a max concurrency defined by the
poolLimit.

```typescript
import { pooledMap } from "https://deno.land.std/async/mod.ts";
import { pooledMap } from "https://deno.land/std/async/mod.ts";

const results = pooledMap(
2,
Expand Down
4 changes: 2 additions & 2 deletions std/signal/README.md
Expand Up @@ -12,7 +12,7 @@ Generates an AsyncIterable which can be awaited on for one or more signals.
`dispose()` can be called when you are finished waiting on the events.

```typescript
import { signal } from "https://deno.land.std/signal/mod.ts";
import { signal } from "https://deno.land/std/signal/mod.ts";
const sig = signal(Deno.Signal.SIGUSR1, Deno.Signal.SIGINT);
setTimeout(() => {}, 5000); // Prevents exiting immediately

Expand All @@ -29,7 +29,7 @@ sig.dispose();
Registers a callback function to be called on triggering of a signal event.

```typescript
import { onSignal } from "https://deno.land.std/signal/mod.ts";
import { onSignal } from "https://deno.land/std/signal/mod.ts";

const handle = onSignal(Deno.Signal.SIGINT, () => {
// ...
Expand Down

0 comments on commit e0d4696

Please sign in to comment.