diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 23:01:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 16:01:32 +1000 |
commit | 8ceb165e5d1dc0c8d417e42ffc3a26e8f5a62a03 (patch) | |
tree | f21e67d6ac5f2e567cda6b0f2baec78ce930a777 /docs/introduction.md | |
parent | 1437838ea19bf2e33f28ed4d30b1aa7c5aa5286e (diff) |
docs: end sentences with a period in docs (#7730)
Diffstat (limited to 'docs/introduction.md')
-rw-r--r-- | docs/introduction.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/introduction.md b/docs/introduction.md index 8fd255756..81f647dc9 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -36,7 +36,7 @@ have been historically written with bash or python. ## Goals - Only ship a single executable (`deno`). -- Provide Secure Defaults +- Provide Secure Defaults. - Unless specifically allowed, scripts can't access files, the environment, or the network. - Browser compatible: The subset of Deno programs which are written completely @@ -45,12 +45,12 @@ have been historically written with bash or python. - Provide built-in tooling like unit testing, code formatting, and linting to improve developer experience. - Does not leak V8 concepts into user land. -- Be able to serve HTTP efficiently +- Be able to serve HTTP efficiently. ## Comparison to Node.js -- Deno does not use `npm` - - It uses modules referenced as URLs or file paths +- Deno does not use `npm`. + - It uses modules referenced as URLs or file paths. - Deno does not use `package.json` in its module resolution algorithm. - All async actions in Deno return a promise. Thus Deno provides different APIs than Node. |