summaryrefslogtreecommitdiff
path: root/docs/introduction.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-27 23:01:32 -0700
committerGitHub <noreply@github.com>2020-09-28 16:01:32 +1000
commit8ceb165e5d1dc0c8d417e42ffc3a26e8f5a62a03 (patch)
treef21e67d6ac5f2e567cda6b0f2baec78ce930a777 /docs/introduction.md
parent1437838ea19bf2e33f28ed4d30b1aa7c5aa5286e (diff)
docs: end sentences with a period in docs (#7730)
Diffstat (limited to 'docs/introduction.md')
-rw-r--r--docs/introduction.md8
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.