Skip to content

Commit 586f049

Browse files
typos (#2900)
1 parent 1130e94 commit 586f049

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

deploy/reference/databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Deno.serve(async () => {
237237
## Running migrations and seeding data
238238

239239
Since each environment has its own isolated database, you will often have many
240-
seperate databases to manage in every app. It is not practical to manually run
240+
separate databases to manage in every app. It is not practical to manually run
241241
migrations or insert seed data into each database individually every time you
242242
deploy a new revision.
243243

examples/_data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export const sidebar = [
329329
type: "example",
330330
},
331331
{
332-
title: "Intereactive JavaScript REPL",
332+
title: "Interactive JavaScript REPL",
333333
href: "/examples/sandbox_javascript_repl/",
334334
type: "example",
335335
},

examples/scripts/sss.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async function generateShares(
5656
return { shares, coefficients };
5757
}
5858

59-
// Secret Reconstuction from a subset of shares using Lagrange interpolation
59+
// Secret Reconstruction from a subset of shares using Lagrange interpolation
6060
function reconstructSecret(shares: Array<{ x: number; y: number }>): number {
6161
const secret = shares.reduce((sum, share, i) => {
6262
let product = share.y;

examples/tutorials/sveltekit.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,9 +529,9 @@ pagination and search inputs added to the UI!
529529
Notice for the input we use `defaultValue={data.q ?? ''}` so that when it is
530530
rendered in the UI we don't get `undefined` or `null` showing.
531531

532-
With snippets you can create re-useable parts of Svelte code for easier
533-
rendering. `{#snippet pageButton(...)}` allows us to define the section to be
534-
rendered. We can then use it and pass the required type safe parameters using
532+
With snippets you can create reusable parts of Svelte code for easier rendering.
533+
`{#snippet pageButton(...)}` allows us to define the section to be rendered. We
534+
can then use it and pass the required type safe parameters using
535535
`{@render pageButton(...)}`. You can see this for all of the pagination buttons.
536536

537537
Another neat Svelte trick is whenever `<style>` is defined on the page, it is

runtime/fundamentals/node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ npm specifiers have the following format:
147147
npm:<package-name>[@<version-requirement>][/<sub-path>]
148148
```
149149

150-
This also allows functionality that may be familar from the `npx` command.
150+
This also allows functionality that may be familiar from the `npx` command.
151151

152152
```console
153153
# npx allows remote execution of a package from npm or a URL

runtime/reference/cli/_commands_reference.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5165,7 +5165,7 @@
51655165
"short": "n",
51665166
"long": "name",
51675167
"required": false,
5168-
"help": "Set a name for the kernel (defaults to 'deno'). \u001b[38;5;245mUseful when maintaing multiple Deno kernels.\u001b[39m",
5168+
"help": "Set a name for the kernel (defaults to 'deno'). \u001b[38;5;245mUseful when maintaining multiple Deno kernels.\u001b[39m",
51695169
"help_heading": null,
51705170
"usage": "--name <name>"
51715171
},
@@ -5174,7 +5174,7 @@
51745174
"short": "d",
51755175
"long": "display",
51765176
"required": false,
5177-
"help": "Set a display name for the kernel (defaults to 'Deno'). \u001b[38;5;245mUseful when maintaing multiple Deno kernels.\u001b[39m",
5177+
"help": "Set a display name for the kernel (defaults to 'Deno'). \u001b[38;5;245mUseful when maintaining multiple Deno kernels.\u001b[39m",
51785178
"help_heading": null,
51795179
"usage": "--display <display>"
51805180
},

runtime/reference/cli/fmt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Ignore formatting next item by preceding it with `# deno-fmt-ignore` comment:
107107

108108
## More about linting and formatting
109109

110-
For more information about linting and formating in Deno, and the differences
110+
For more information about linting and formatting in Deno, and the differences
111111
between these two utilities, visit the
112112
[Linting and Formatting](/runtime/fundamentals/linting_and_formatting/) page in
113113
our Fundamentals section.

runtime/reference/cli/lint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ file-level ignore directive.
144144

145145
## More about linting and formatting
146146

147-
For more information about linting and formating in Deno, and the differences
147+
For more information about linting and formatting in Deno, and the differences
148148
between these two utilities, visit the
149149
[Linting and Formatting](/runtime/fundamentals/linting_and_formatting/) page in
150150
our Fundamentals section.

runtime/reference/cli/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ hello
403403
Deno: undefined
404404
```
405405

406-
Shell variables can be useful when we want to re-use a value, but don't want it
406+
Shell variables can be useful when we want to reuse a value, but don't want it
407407
available in any spawned processes.
408408

409409
### Exit status variable

runtime/reference/std/assert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ assertAlmostEquals(0.1 + 0.2, 0.3, 1e-15); // ✅
157157
## Writing good failure messages
158158

159159
All assertions accept an optional message as the last argument. Write messages
160-
to help developers understand where the failure occured and how to fix it. Keep
160+
to help developers understand where the failure occurred and how to fix it. Keep
161161
messages concise and user-focused:
162162

163163
```ts

0 commit comments

Comments
 (0)