Fix Popover demo typo (#4703)

This commit is contained in:
Walter Barbagallo 2017-01-25 14:27:14 +01:00 committed by 偏右
parent 1ce6f7fc35
commit 5e3618c26d
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ exports[`test renders ./components/popover/demo/control.md correctly 1`] = `
class="ant-btn ant-btn-primary" class="ant-btn ant-btn-primary"
type="button"> type="button">
<span> <span>
Cilck me Click me
</span> </span>
</button> </button>
`; `;

View File

@ -39,7 +39,7 @@ const App = React.createClass({
visible={this.state.visible} visible={this.state.visible}
onVisibleChange={this.handleVisibleChange} onVisibleChange={this.handleVisibleChange}
> >
<Button type="primary">Cilck me</Button> <Button type="primary">Click me</Button>
</Popover> </Popover>
); );
}, },