Add missing semicolon in NativeModulesIOS.md

Summary:
` ConstantsconstantsToExport` in` EnumConstants` has an error. It is a missing a closing curly braces after `return`.

Do not need a test.
Closes https://github.com/facebook/react-native/pull/13911

Differential Revision: D5145977

Pulled By: shergin

fbshipit-source-id: 267ea7d69253d10aaef763879318824b6e02d2c5
This commit is contained in:
Jeff kang 2017-05-29 16:03:54 -07:00 committed by Facebook Github Bot
parent e13b9c6e49
commit b11dc39430
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ You can then define methods and export your enum constants like this:
{
return @{ @"statusBarAnimationNone" : @(UIStatusBarAnimationNone),
@"statusBarAnimationFade" : @(UIStatusBarAnimationFade),
@"statusBarAnimationSlide" : @(UIStatusBarAnimationSlide) }
@"statusBarAnimationSlide" : @(UIStatusBarAnimationSlide) };
};
RCT_EXPORT_METHOD(updateStatusBarAnimation:(UIStatusBarAnimation)animation