Skip to content

Commit

Permalink
docs(style_guide): fix typoFixes a small syntax error (denoland#2567)
Browse files Browse the repository at this point in the history
  • Loading branch information
matzkoh authored and ry committed Jun 28, 2019
1 parent 83fe397 commit 1b48d67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/style_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ limited to closures.
Bad

```ts
export const foo(): string => {
export const foo = (): string => {
return "bar";
}
};
```

Good
Expand Down

0 comments on commit 1b48d67

Please sign in to comment.