Skip to content

Commit

Permalink
Some copy changes in 'Getting started' (#892)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Sep 24, 2024
1 parent 5ed6656 commit 76d0c2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions runtime/getting_started/first_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ program.
You can run this program with the following command:

```bash
$ deno run main.ts
$ deno main.ts
Add 2 + 3 = 5
```

Expand All @@ -55,7 +55,7 @@ tests for your code and run them with the `deno test` command. Run the tests in
your new project with:

```bash
$ deno test main_test.ts
$ deno test
running 1 test from ./main_test.ts
addTest ... ok (1ms)

Expand Down
8 changes: 4 additions & 4 deletions runtime/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ deno --version
## Hello World

Deno can run JavaScript and [TypeScript](https://www.typescriptlang.org/) with
no additional tools or configuration required. We'll make and run a simple
"hello world" program and run it with Deno.
no additional tools or configuration required. Let's create a simple "hello
world" program and run it with Deno.

Create a TypeScript or JavaScript file called `main` and include the following
code:
Expand Down Expand Up @@ -96,15 +96,15 @@ Save the file and run it with Deno:
<deno-tab value="ts" label="main.ts" default>

```sh
$ deno run main.ts
$ deno main.ts
Hello, world!
```

</deno-tab>
<deno-tab value="js" label="main.js">

```sh
$ deno run main.js
$ deno main.js
Hello, world!
```

Expand Down

0 comments on commit 76d0c2b

Please sign in to comment.