From b02db77ca42f538f7b51e59e87000a481b8d85c9 Mon Sep 17 00:00:00 2001 From: Tadeu Zagallo Date: Thu, 26 Mar 2015 17:45:29 +0000 Subject: [PATCH] Fix typo in README Closes #211 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b3e5ea0e..4d22b1307 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ var GeoInfo = React.createClass({ ## Extensibility -It is certainly possible to create a great app using React Native without writing a single line of native code, but React Native is also designed to be easily expended with custom native views and modules - that means you can reuse anything you{"'"}ve already built, and can import and use your favorite native libraries. To create a simple module in iOS, create a new class that implements the RCTBridgeModule protocol, and add RCT_EXPORT to the function you want to make available in JavaScript. +It is certainly possible to create a great app using React Native without writing a single line of native code, but React Native is also designed to be easily expended with custom native views and modules - that means you can reuse anything you've already built, and can import and use your favorite native libraries. To create a simple module in iOS, create a new class that implements the RCTBridgeModule protocol, and add RCT_EXPORT to the function you want to make available in JavaScript. ```javascript // Objective-C