From 1b48d67fbba55d64372052879d26bf8e2143d9c7 Mon Sep 17 00:00:00 2001 From: matzkoh <34151961+matzkoh@users.noreply.github.com> Date: Sat, 29 Jun 2019 07:49:03 +0900 Subject: [PATCH] docs(style_guide): fix typoFixes a small syntax error (#2567) --- website/style_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/style_guide.md b/website/style_guide.md index 94a3cb4cc8..7655289224 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