Skip to content

Commit

Permalink
Merge pull request #1162 from airbnb/lmr--fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
lelandrichardson committed Mar 26, 2017
2 parents 4e8326f + edde484 commit 903c099
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -322,7 +322,7 @@ Failed to build DependencyGraph: @providesModule naming collision:
Duplicate module name: String.prototype.es6
Paths: /Users/<path to project>/node_modules/react-native-maps/example2/node_modules/react-native/packager/react-packager/src/Resolver/polyfills/String.prototype.es6.js collides with /Users/<path to project>/node_modules/react-native/packager/react-packager/src/Resolver/polyfills/String.prototype.es6.js
This error is caused by a @providesModule declaration with the same name accross two different files.
This error is caused by a @providesModule declaration with the same name across two different files.
```

0.8.2 is identical to 0.8.1, except with the offending code removed from the NPM package.
Expand Down
Expand Up @@ -14,7 +14,7 @@

public class MapsPackage implements ReactPackage {
public MapsPackage(Activity activity) {
} // backwards compatability
} // backwards compatibility

public MapsPackage() {
}
Expand Down
2 changes: 1 addition & 1 deletion docs/mapview.md
Expand Up @@ -26,7 +26,7 @@
| `scrollEnabled` | `Boolean` | `true` | If `false` the user won't be able to change the map region being displayed.
| `pitchEnabled` | `Boolean` | `true` | If `false` the user won't be able to adjust the camera’s pitch angle.
| `toolbarEnabled` | `Boolean` | `true` | `Android only` If `false` will hide 'Navigate' and 'Open in Maps' buttons on marker press
| `cacheEnabled` | `Boolean` | `false` | If `true` map will be cached and displayed as a image instead of being interactable, for performance usage.
| `cacheEnabled` | `Boolean` | `false` | If `true` map will be cached and displayed as an image instead of being interactable, for performance usage.
| `loadingEnabled` | `Boolean` | `false` | If `true` a loading indicator will show while the map is loading.
| `loadingIndicatorColor` | `Color` | `#606060` | Sets loading indicator color, default to `#606060`.
| `loadingBackgroundColor` | `Color` | `#FFFFFF` | Sets loading background color, default to `#FFFFFF`.
Expand Down
2 changes: 1 addition & 1 deletion ios/AirMaps/AIRMapManager.m
Expand Up @@ -685,7 +685,7 @@ - (void)_regionChanged:(AIRMap *)mapView
mapView.region = region;
}

// Continously observe region changes
// Continuously observe region changes
[self _emitRegionChangeEvent:mapView continuous:YES];
}

Expand Down
2 changes: 1 addition & 1 deletion ios/AirMaps/Callout/SMCalloutView.h
Expand Up @@ -183,7 +183,7 @@ extern NSTimeInterval const kSMCalloutViewRepositionDelayForUIScrollView;
Typically you would return @c kSMCalloutViewRepositionDelayForUIScrollView if you're repositioning by calling @c [UIScrollView @c setContentOffset:animated:].
@param calloutView the @c SMCalloutView to reposition
@param offset caluclated offset necessary to make everything visible
@param offset calculated offset necessary to make everything visible
@returns @c NSTimeInterval to delay the repositioning
*/
- (NSTimeInterval)calloutView:(SMCalloutView *)calloutView delayForRepositionWithSize:(CGSize)offset;
Expand Down

0 comments on commit 903c099

Please sign in to comment.