Merge pull request #4060 from sunnylqm/patch-3

fix typo
This commit is contained in:
James Ide
2015-11-10 19:24:27 -08:00

View File

@@ -103,7 +103,7 @@ RCT_EXPORT_METHOD(addEvent:(NSString *)name location:(NSString *)location date:(
You would then call this from JavaScript by using either:
```javascript
CalendarManager.addEvent('Birthday Party', '4 Privet Drive, Surrey', date.toTime()); // passing date as number of seconds since Unix epoch
CalendarManager.addEvent('Birthday Party', '4 Privet Drive, Surrey', date.getTime()); // passing date as number of seconds since Unix epoch
```
or