diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-10-03 13:19:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 07:19:11 +1100 |
commit | d0eb179132c60a7c2513c9d19db03e3d5ca00c70 (patch) | |
tree | 627339e0dc2212ed861184d46b6af31605224d24 /cli/rt | |
parent | 391eed42f41bd277fff936192b474bfd52eaa1a0 (diff) |
docs: end sentences with a period in markdown (#7813)
Diffstat (limited to 'cli/rt')
-rw-r--r-- | cli/rt/README.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cli/rt/README.md b/cli/rt/README.md index f73163df2..b17fa22e5 100644 --- a/cli/rt/README.md +++ b/cli/rt/README.md @@ -22,14 +22,14 @@ Some Web APIs are using ops under the hood, eg. `console`, `performance`. ## Implemented Web APIs - [Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob): for - representing opaque binary data + representing opaque binary data. - [Console](https://developer.mozilla.org/en-US/docs/Web/API/Console): for - logging purposes + logging purposes. - [CustomEvent](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent), [EventTarget](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget) and [EventListener](https://developer.mozilla.org/en-US/docs/Web/API/EventListener): - to work with DOM events + to work with DOM events. - **Implementation notes:** There is no DOM hierarchy in Deno, so there is no tree for Events to bubble/capture through. - [fetch](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch), @@ -37,23 +37,23 @@ Some Web APIs are using ops under the hood, eg. `console`, `performance`. [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response), [Body](https://developer.mozilla.org/en-US/docs/Web/API/Body) and [Headers](https://developer.mozilla.org/en-US/docs/Web/API/Headers): modern - Promise-based HTTP Request API + Promise-based HTTP Request API. - [FormData](https://developer.mozilla.org/en-US/docs/Web/API/FormData): access - to a `multipart/form-data` serialization + to a `multipart/form-data` serialization. - [Performance](https://developer.mozilla.org/en-US/docs/Web/API/Performance): - retrieving current time with a high precision + retrieving current time with a high precision. - [setTimeout](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout), [setInterval](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setInterval), [clearTimeout](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearTimeout): scheduling callbacks in future and - [clearInterval](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval) + [clearInterval](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval). - [Stream](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) for - creating, composing, and consuming streams of data + creating, composing, and consuming streams of data. - [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) and [URLSearchParams](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams): - to construct and parse URLSs + to construct and parse URLSs. - [Worker](https://developer.mozilla.org/en-US/docs/Web/API/Worker): executing - additional code in a separate thread + additional code in a separate thread. - **Implementation notes:** Blob URLs are not supported, object ownership cannot be transferred, posted data is serialized to JSON instead of [structured cloning](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm). |