mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
docs(style_guide): fix typoFixes a small syntax error (#2567)
This commit is contained in:
parent
83fe397016
commit
1b48d67fbb
1 changed files with 2 additions and 2 deletions
|
@ -174,9 +174,9 @@ limited to closures.
|
|||
Bad
|
||||
|
||||
```ts
|
||||
export const foo(): string => {
|
||||
export const foo = (): string => {
|
||||
return "bar";
|
||||
}
|
||||
};
|
||||
```
|
||||
|
||||
Good
|
||||
|
|
Loading…
Reference in a new issue