Skip to content

Commit

Permalink
fix(src): eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchentw committed May 22, 2015
1 parent 71502a2 commit adf3764
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import GoogleMaps from "./GoogleMaps";

import Circle from "./Circle";
import DirectionsRenderer from "./DirectionsRenderer";
import DrawingManager from './DrawingManager';
import DrawingManager from "./DrawingManager";
import InfoWindow from "./InfoWindow";
import Marker from "./Marker";
import Polygon from "./Polygon";
Expand Down
2 changes: 1 addition & 1 deletion src/internals/EventComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function noop () {
class EventComponent extends React.Component {
/* Contract
* statics:
* _registerEvents:
* _registerEvents:
* member:
* _createOrUpdateInstance
*/
Expand Down
2 changes: 1 addition & 1 deletion src/internals/SimpleChildComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const {PropTypes} = React;
class SimpleChildComponent extends EventComponent {
/* Contract
* statics:
* _GoogleMapsClassName:
* _GoogleMapsClassName:
* state:
* instance
*/
Expand Down
2 changes: 1 addition & 1 deletion src/internals/exposeGetters.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ function exposeGetters (component, prototype, instance) {
component[key] = instance[key].bind(instance);
}
}
};
}

export default exposeGetters;

0 comments on commit adf3764

Please sign in to comment.