Skip to content

Commit

Permalink
docs(ModalNested) fix typo (reactstrap#1112)
Browse files Browse the repository at this point in the history
This change fixes a typo in the ModalNested docs where "Show Nested Modal" was misspelled.
  • Loading branch information
Limon Monte authored and gergely-nagy committed Jul 6, 2018
1 parent 1139d7f commit 2d75db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/lib/examples/ModalNested.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ModalExample extends React.Component {
<ModalBody>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<br />
<Button color="success" onClick={this.toggleNested}>Show Nested Model</Button>
<Button color="success" onClick={this.toggleNested}>Show Nested Modal</Button>
<Modal isOpen={this.state.nestedModal} toggle={this.toggleNested} onClosed={this.state.closeAll ? this.toggle : undefined}>
<ModalHeader>Nested Modal title</ModalHeader>
<ModalBody>Stuff and things</ModalBody>
Expand Down

0 comments on commit 2d75db0

Please sign in to comment.