From e9ae68f55b55c5a0c7b74c6af00e2e5c5b3d99a6 Mon Sep 17 00:00:00 2001 From: Alex Krolick Date: Thu, 22 Mar 2018 20:58:22 -0700 Subject: [PATCH] remove confusing {} --- content/docs/context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/context.md b/content/docs/context.md index 2b9ccfdd..55997c8d 100644 --- a/content/docs/context.md +++ b/content/docs/context.md @@ -55,7 +55,7 @@ Accepts a `value` prop to be passed to Consumers that are descendants of this Pr ```js - { value => { /* render something based on the context value */ } } + {value => /* render something based on the context value */} ```