1
0
Fork 0
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:
matzkoh 2019-06-29 07:49:03 +09:00 committed by Ryan Dahl
parent 83fe397016
commit 1b48d67fbb

View file

@ -174,9 +174,9 @@ limited to closures.
Bad
```ts
export const foo(): string => {
export const foo = (): string => {
return "bar";
}
};
```
Good