From f17b55ce5782a12df91f079026e818138f31511f Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sun, 19 Feb 2017 11:58:42 +0000 Subject: [PATCH] Doc consistency tweaks --- docs/lifting-state-up.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lifting-state-up.md b/docs/lifting-state-up.md index 1c23e4f9..7cbff105 100644 --- a/docs/lifting-state-up.md +++ b/docs/lifting-state-up.md @@ -236,7 +236,7 @@ For example, if we enter 37 into the Celsius input, the state of the `Calculator ```js { value: '37', - scale: 'C' + scale: 'c' } ``` @@ -245,7 +245,7 @@ If we later edit the Fahrenheit field to be 212, the state of the `Calculator` w ```js { value: '212', - scale: 'F' + scale: 'f' } ```