Skip to content

Commit adf3764

Browse files
committed
fix(src): eslint issues
1 parent 71502a2 commit adf3764

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import GoogleMaps from "./GoogleMaps";
22

33
import Circle from "./Circle";
44
import DirectionsRenderer from "./DirectionsRenderer";
5-
import DrawingManager from './DrawingManager';
5+
import DrawingManager from "./DrawingManager";
66
import InfoWindow from "./InfoWindow";
77
import Marker from "./Marker";
88
import Polygon from "./Polygon";

src/internals/EventComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function noop () {
88
class EventComponent extends React.Component {
99
/* Contract
1010
* statics:
11-
* _registerEvents:
11+
* _registerEvents:
1212
* member:
1313
* _createOrUpdateInstance
1414
*/

src/internals/SimpleChildComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const {PropTypes} = React;
1010
class SimpleChildComponent extends EventComponent {
1111
/* Contract
1212
* statics:
13-
* _GoogleMapsClassName:
13+
* _GoogleMapsClassName:
1414
* state:
1515
* instance
1616
*/

src/internals/exposeGetters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ function exposeGetters (component, prototype, instance) {
44
component[key] = instance[key].bind(instance);
55
}
66
}
7-
};
7+
}
88

99
export default exposeGetters;

0 commit comments

Comments
 (0)