From 3c46d0544c90d7e84adbc6701e195a40cc0d5e2d Mon Sep 17 00:00:00 2001 From: Matthew Kosloski Date: Sun, 4 Sep 2016 19:31:06 -0500 Subject: [PATCH] fixed a few typos (#293) --- docs/walkthroughs/applying-custom-formatting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/walkthroughs/applying-custom-formatting.md b/docs/walkthroughs/applying-custom-formatting.md index f823db166..33a096a63 100644 --- a/docs/walkthroughs/applying-custom-formatting.md +++ b/docs/walkthroughs/applying-custom-formatting.md @@ -27,7 +27,7 @@ class App extends React.Component { return ( this.setState({ state })} onKeyDown={e, data, state => this.onKeyDown(e, data, state)} /> @@ -112,7 +112,7 @@ function BoldMark(props) { Pretty simple, right? -And now, let's tell Slate about that mark. To do that, we'll add it to the `schema` object under a `marks` property, like so so: +And now, let's tell Slate about that mark. To do that, we'll add it to the `schema` object under a `marks` property, like so: ```js function BoldMark(props) {