From 42cfba558f18eda6e711cdea175303d9066bbb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?hi=E5=A4=A7=E5=A4=B4=E9=AC=BChi?= Date: Mon, 18 Apr 2016 03:54:44 -0700 Subject: [PATCH] fix typo Summary:Thanks for submitting a pull request! Please provide enough information so that others can review your pull request: (You can skip this if you're fixing a typo or adding an app to the Showcase.) Explain the **motivation** for making this change. What existing problem does the pull request solve? Prefer **small pull requests**. These are much easier to review and more likely to get merged. Make sure the PR does only one thing, otherwise please split it. **Test plan (required)** Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos if the pull request changes UI. Make sure tests pass on both Travis and Circle CI. **Code formatting** Look around. Match the style of the rest of the codebase. See also the simple [style guide](https://github.com/facebook/react-native/blob/master/CONTRIBUTING.md#style-guide). fix typo in comment Closes https://github.com/facebook/react-native/pull/7027 Differential Revision: D3190693 Pulled By: dmmiller fb-gh-sync-id: fe1eddaeb13deac6f93da7ec600c267df2599586 fbshipit-source-id: fe1eddaeb13deac6f93da7ec600c267df2599586 --- .../react/views/recyclerview/RecyclerViewBackedScrollView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/views/recyclerview/RecyclerViewBackedScrollView.java b/ReactAndroid/src/main/java/com/facebook/react/views/recyclerview/RecyclerViewBackedScrollView.java index 337fd5cfb..df3f2c575 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/views/recyclerview/RecyclerViewBackedScrollView.java +++ b/ReactAndroid/src/main/java/com/facebook/react/views/recyclerview/RecyclerViewBackedScrollView.java @@ -26,7 +26,7 @@ import com.facebook.react.views.scroll.ScrollEventType; * will be rendered as a separate {@link RecyclerView} row. * * Currently supports only vertically positioned item. Views will not be automatically recycled but - * they will be detache from native view hierarchy when scrolled offscreen. + * they will be detached from native view hierarchy when scrolled offscreen. * * It works by storing all child views in an array within adapter and binding appropriate views to * rows when requested.