From 39431deb1fdc8196eb06ba98085e753adad669a2 Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Fri, 7 Apr 2017 10:43:19 -0700 Subject: [PATCH] fix typo - closes #13369 Summary: We're just fixing a reported typo from the docs. proofreading Closes https://github.com/facebook/react-native/pull/13375 Differential Revision: D4851601 Pulled By: javache fbshipit-source-id: b8bd4067285809dd24b6e5c9bc8fddcc8734dfd1 --- Libraries/Components/ScrollView/ScrollView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index b0bc86b9d..387465ab3 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -56,7 +56,7 @@ const requireNativeComponent = require('requireNativeComponent'); * * On the other hand, this has a performance downside. Imagine you have a very * long list of items you want to display, maybe several screens worth of - * content. Creating JS components and native views for everythign all at once, + * content. Creating JS components and native views for everything all at once, * much of which may not even be shown, will contribute to slow rendering and * increased memory usage. *