From 597fbdec724cba7f2619d29fdf4e8cfb9b9d9a33 Mon Sep 17 00:00:00 2001 From: Anton Kulakov Date: Thu, 18 Aug 2016 19:14:58 +0300 Subject: [PATCH] Fixed typo (#252) --- docs/walkthroughs/defining-custom-block-nodes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/walkthroughs/defining-custom-block-nodes.md b/docs/walkthroughs/defining-custom-block-nodes.md index b8b210def..ab7af673a 100644 --- a/docs/walkthroughs/defining-custom-block-nodes.md +++ b/docs/walkthroughs/defining-custom-block-nodes.md @@ -144,7 +144,7 @@ class App extends React.Component { .transform() .setBlock('code') .apply() - } + } } @@ -192,7 +192,7 @@ class App extends React.Component { .transform() .setBlock(isCode ? 'paragraph' : 'code') .apply() - } + } }