Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
camargo committed Feb 27, 2017
1 parent e92c484 commit 2a2eff9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as glPlot2d from 'gl-plot-2d';
class App extends Component {
constructor() {
super();
glPlot2d.defineGlPlot2D('gl-plot-2d');
glPlot2d.defineGlPlot2d('gl-plot-2d');
}

componentWillMount() {
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'skatejs-web-components';

export {
defineGlPlot2D,
defineGlPlot2d,
GlPlot2dComponent,
GlPlot2dComponentProps,
GlPlot2dOptions,
Expand Down
2 changes: 1 addition & 1 deletion src/GlPlot2dComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export class GlPlot2dComponent extends skate.Component<GlPlot2dComponentProps> {
* @param {string} [name]
* @returns {*}
*/
export function defineGlPlot2D(name?: string): any {
export function defineGlPlot2d(name?: string): any {
if (!name) {
name = 'gl-plot-2d';
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { defineGlPlot2D, GlPlot2dComponent } from './GlPlot2dComponent';
export { defineGlPlot2d, GlPlot2dComponent } from './GlPlot2dComponent';
export { GlPlot2dOptions } from './GlPlot2dOptions';
export { GlPlot2dComponentProps } from './GlPlot2dComponentProps';
export * from './GlPlot2dUtils';
Expand Down

0 comments on commit 2a2eff9

Please sign in to comment.