From fc25df18f6d02d6bdc4911973339497520869a12 Mon Sep 17 00:00:00 2001 From: Stacey Gammon Date: Thu, 12 Jan 2017 13:30:04 -0500 Subject: [PATCH] Fix link syntax --- style_guides/js_style_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style_guides/js_style_guide.md b/style_guides/js_style_guide.md index 966783ed1638d9..c0bc00de2391a3 100644 --- a/style_guides/js_style_guide.md +++ b/style_guides/js_style_guide.md @@ -323,7 +323,7 @@ import inSibling from '../foo/child'; ## Use named exports only -Favor named exports over default exports. See (#8641)[https://github.com/elastic/kibana/issues/8641] for more background on this decision. +Favor named exports over default exports. See [#8641](https://github.com/elastic/kibana/issues/8641) for more background on this decision. ```js // good