From e8c8a06329070eef297fcc0d3aaf493e9d330f94 Mon Sep 17 00:00:00 2001 From: origsun Date: Sun, 31 Jul 2016 07:25:47 -0700 Subject: [PATCH] Fix bad link typo in View document Summary: This is trivial. It fixes a bad link in http://facebook.github.io/react-native/docs/view.html#importantforaccessibility (the "Android importantForAccessibility docs" link). Closes https://github.com/facebook/react-native/pull/9099 Differential Revision: D3647803 Pulled By: mkonicek fbshipit-source-id: 8c75da03d926f60db0c75237b9ad48983bf9738f --- Libraries/Components/View/View.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Components/View/View.js b/Libraries/Components/View/View.js index 610574650..4d8c47383 100644 --- a/Libraries/Components/View/View.js +++ b/Libraries/Components/View/View.js @@ -194,7 +194,7 @@ const View = React.createClass({ * - `'no-hide-descendants'` - The view is not important for accessibility, * nor are any of its descendant views. * - * See the [Android `importantForAccessibility` docs]( [http://developer.android.com/reference/android/R.attr.html#importantForAccessibility) + * See the [Android `importantForAccessibility` docs](http://developer.android.com/reference/android/R.attr.html#importantForAccessibility) * for reference. * * @platform android