From 45b5a20395323bb6325e1c5fabef3e95dfa559ea Mon Sep 17 00:00:00 2001 From: Chafic Najjar Date: Wed, 28 Mar 2018 11:03:24 +0300 Subject: [PATCH] Fix mistake in integrating-with-other-libraries.md The word "applications" is plural so it should be referred to with "them" instead of "it". --- content/docs/integrating-with-other-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/integrating-with-other-libraries.md b/content/docs/integrating-with-other-libraries.md index 50bc87c7..386c17c8 100644 --- a/content/docs/integrating-with-other-libraries.md +++ b/content/docs/integrating-with-other-libraries.md @@ -194,7 +194,7 @@ React can be embedded into other applications thanks to the flexibility of [`Rea Although React is commonly used at startup to load a single root React component into the DOM, `ReactDOM.render()` can also be called multiple times for independent parts of the UI which can be as small as a button, or as large as an app. -In fact, this is exactly how React is used at Facebook. This lets us write applications in React piece by piece, and combine it with our existing server-generated templates and other client-side code. +In fact, this is exactly how React is used at Facebook. This lets us write applications in React piece by piece, and combine them with our existing server-generated templates and other client-side code. ### Replacing String-Based Rendering with React