fix typo in description of selectedIndex prop

Summary:
<!--
Thank you for sending the PR! We appreciate you spending the time to work on these changes.

Help us understand your motivation by explaining why you decided to make this change.

You can learn more about contributing to React Native here: http://facebook.github.io/react-native/docs/contributing.html

Happy contributing!

-->

I was reading up on how to control the selected value of a `SegmentedControlIOS` component and noticed that the prop was written wrong in the description.

1. This PR changes only the content of a component description comment, and not any code.
Closes https://github.com/facebook/react-native/pull/15742

Differential Revision: D5757116

Pulled By: hramos

fbshipit-source-id: faccb95fb3a4ba2852c457c3559c066da09e6bb9
This commit is contained in:
Christopher Best 2017-09-01 12:53:24 -07:00 коммит произвёл Facebook Github Bot
Родитель 57c7324ab7
Коммит 3834cb5f68
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -35,7 +35,7 @@ type Event = Object;
* #### Programmatically changing selected index * #### Programmatically changing selected index
* *
* The selected index can be changed on the fly by assigning the * The selected index can be changed on the fly by assigning the
* selectIndex prop to a state variable, then changing that variable. * selectedIndex prop to a state variable, then changing that variable.
* Note that the state variable would need to be updated as the user * Note that the state variable would need to be updated as the user
* selects a value and changes the index, as shown in the example below. * selects a value and changes the index, as shown in the example below.
* *