From 6a4b42c4ec7209f2273f1209a82dc16732baf8e1 Mon Sep 17 00:00:00 2001 From: Nick Black Date: Tue, 4 Feb 2020 02:54:02 -0500 Subject: [PATCH] Update to make instructions more clear (#38068) The instructions on the exercise following this specify 'behind the scenes' which sounds more clear than 'in the background'. --- .../react/compose-react-components.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/react/compose-react-components.english.md b/curriculum/challenges/english/03-front-end-libraries/react/compose-react-components.english.md index eb87824955..39ed995f2c 100644 --- a/curriculum/challenges/english/03-front-end-libraries/react/compose-react-components.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/react/compose-react-components.english.md @@ -14,7 +14,7 @@ As the challenges continue to use more complex compositions with React component ## Instructions
In the code editor, the TypesOfFood component is already rendering a component called Vegetables. Also, there is the Fruits component from the last challenge. -Nest two components inside of Fruits — first NonCitrus, and then Citrus. Both of these components are provided for you in the background. Next, nest the Fruits class component into the TypesOfFood component, below the h1 header and above Vegetables. The result should be a series of nested components, which uses two different component types. +Nest two components inside of Fruits — first NonCitrus, and then Citrus. Both of these components are provided for you behind the scenes. Next, nest the Fruits class component into the TypesOfFood component, below the h1 header and above Vegetables. The result should be a series of nested components, which uses two different component types.
## Tests