Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos and improve formatting in JS guide #1079

Merged
merged 4 commits into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions js/the-basics/dependencies.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ more information.

If your application works locally but doesn't work when deployed this may be due to
dependencies which are installed globally rather than being enumerated in the
package.json file. In order to deploy an application, it needs to be self contained.
package.json file. In order to deploy an application, it needs to be self-contained.

You can resolve this by adding the dependency to your package.json, typically by
You can resolve this by adding the dependency to your `package.json`, typically by
using a command such as `yarn add` or `npm install`.

## Mis-categorized dependencies
Expand Down
4 changes: 2 additions & 2 deletions js/the-basics/dockerfiles.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ order: 0

The recommended way to deploy Bun, Deno, and Node.js applications is via
[Dockerfiles](https://docs.docker.com/engine/reference/builder/). You can
provided your own Dockerfile or you can let fly.io's
provide your own Dockerfile or you can let Fly.io's
[dockerfile generator](https://github.com/fly-apps/dockerfile-node#overview)
produce one for you.

Expand All @@ -18,7 +18,7 @@ fly launch
```

In most cases you won't ever need to edit this Dockerfile directly. Instead you will be
able to use one or more of the may [options](https://github.com/fly-apps/dockerfile-node#options)
able to use one or more of the many [options](https://github.com/fly-apps/dockerfile-node#options)
to make changes. For example:

```cmd
Expand Down
Loading