summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authormatzkoh <34151961+matzkoh@users.noreply.github.com>2019-06-29 07:49:03 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-06-28 18:49:03 -0400
commit1b48d67fbba55d64372052879d26bf8e2143d9c7 (patch)
tree24c5cd43fb08b1d800eb70899cb6cfe9c7a53cab /website
parent83fe39701651058ae8c824621b7ef3849704fe07 (diff)
docs(style_guide): fix typoFixes a small syntax error (#2567)
Diffstat (limited to 'website')
-rw-r--r--website/style_guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/style_guide.md b/website/style_guide.md
index 94a3cb4cc..765528922 100644
--- a/website/style_guide.md
+++ b/website/style_guide.md
@@ -174,9 +174,9 @@ limited to closures.
Bad
```ts
-export const foo(): string => {
+export const foo = (): string => {
return "bar";
-}
+};
```
Good