From b12b05b9da98a5e2932becac97a58639ac3502d0 Mon Sep 17 00:00:00 2001 From: Hou Chia Date: Mon, 21 Dec 2015 14:51:10 -0800 Subject: [PATCH] Capitalizes first letter of first word in the Step 1 instruction This proposed change makes the documentation formatting more consistent. --- docs/thinking-in-react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/thinking-in-react.md b/docs/thinking-in-react.md index 85cee61e..b10be37a 100644 --- a/docs/thinking-in-react.md +++ b/docs/thinking-in-react.md @@ -31,7 +31,7 @@ Our JSON API returns some data that looks like this: ]; ``` -## Step 1: break the UI into a component hierarchy +## Step 1: Break the UI into a component hierarchy The first thing you'll want to do is to draw boxes around every component (and subcomponent) in the mock and give them all names. If you're working with a designer, they may have already done this, so go talk to them! Their Photoshop layer names may end up being the names of your React components!