docs: end sentences with a period in markdown (#7813)

This commit is contained in:
Trivikram Kamat 2020-10-03 13:19:11 -07:00 committed by GitHub
parent 391eed42f4
commit d0eb179132
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 130 additions and 130 deletions

View file

@ -4,11 +4,11 @@ async is a module to provide help with aysncronous tasks.
# usage
The following functions and class are exposed in `mod.ts`
The following functions and class are exposed in `mod.ts`:
## deferred
Creates a Promise with the `reject` and `resolve` functions.
Create a Promise with the `reject` and `resolve` functions.
```typescript
import { deferred } from "https://deno.land/std/async/mod.ts";
@ -20,7 +20,7 @@ p.resolve(42);
## delay
Resolve a Promise after a given amount of milliseconds
Resolve a Promise after a given amount of milliseconds.
```typescript
import { delay } from "https://deno.land/std/async/mod.ts";