Skip to content

Commit

Permalink
docs: fix typos (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
gawrysiak authored and satya164 committed May 25, 2018
1 parent 5a65241 commit 880aba2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Dialog/DialogActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type Props = {
* visible: false,
* };
*
* _hideDialog = () => this.setState({ visble: false });
* _hideDialog = () => this.setState({ visible: false });
*
* render() {
* return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/DialogContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type Props = {
* visible: false,
* };
*
* _hideDialog = () => this.setState({ visble: false });
* _hideDialog = () => this.setState({ visible: false });
*
* render() {
* return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/DialogScrollArea.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Props = {
* visible: false,
* };
*
* _hideDialog = () => this.setState({ visble: false });
* _hideDialog = () => this.setState({ visible: false });
*
* render() {
* return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dialog/DialogTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type Props = {
* visible: false,
* };
*
* _hideDialog = () => this.setState({ visble: false });
* _hideDialog = () => this.setState({ visible: false });
*
* render() {
* return (
Expand Down
4 changes: 2 additions & 2 deletions src/components/Modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ type State = {
* visible: false,
* };
*
* _showModal = () => this.setState({ visble: true });
* _hideModal = () => this.setState({ visble: false });
* _showModal = () => this.setState({ visible: true });
* _hideModal = () => this.setState({ visible: false });
*
* render() {
* const { visible } = this.state;
Expand Down

0 comments on commit 880aba2

Please sign in to comment.