Skip to content
Merged
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
6 changes: 3 additions & 3 deletions runtime/contributing/style_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ guide for users of Deno.
Most modules in the repository should have the following copyright header:

```ts
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2026 the Deno authors. All rights reserved. MIT license.
```

If the code originates elsewhere, ensure that the file has the proper copyright
Expand Down Expand Up @@ -366,7 +366,7 @@ export function foo(): string {
Regular functions and arrow functions have different behavior with respect to
hoisting, binding, arguments, and constructability. The `function` keyword
clearly indicates the intent to define a function, improving legibility and
tracibility while debugging.
traceability while debugging.

#### Error Messages

Expand Down Expand Up @@ -405,7 +405,7 @@ Bad: Cannot parse input hello, world
Good: Cannot parse input "hello, world"
```

4. Message should state the action that lead to the error:
4. Message should state the action that led to the error:

```sh
Bad: Invalid input x
Expand Down
Loading