From f36c6195b8fc80a9f7f9966b6ab6fdd010f92a16 Mon Sep 17 00:00:00 2001 From: Zheeeng Date: Tue, 12 Jun 2018 14:36:08 +0800 Subject: [PATCH] Fix typo (#10878) First of all, thank you for your contribution! :-) Please makes sure that these checkboxes are checked before submitting your PR, thank you! * [x] Make sure that you propose PR to right branch: bugfix for `master`, feature for latest active branch `feature-x.x`. * [x] Make sure that you follow antd's [code convention](https://github.com/ant-design/ant-design/wiki/Code-convention-for-antd). * [x] Run `npm run lint` and fix those errors before submitting in order to keep consistent code style. * [x] Rebase before creating a PR to keep commit history clear. * [ ] Add some descriptions and refer relative issues for you PR. Extra checklist: **if** *isBugFix* **:** * [ ] Make sure that you add at least one unit test for the bug which you had fixed. **elif** *isNewFeature* **:** * [ ] Update API docs for the component. * [ ] Update/Add demo to demonstrate new feature. * [ ] Update TypeScript definition for the component. * [ ] Add unit tests for the feature. --- components/button/__tests__/index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/button/__tests__/index.test.js b/components/button/__tests__/index.test.js index a868daeeba..49ee1e676d 100644 --- a/components/button/__tests__/index.test.js +++ b/components/button/__tests__/index.test.js @@ -61,7 +61,7 @@ describe('Button', () => { expect(wrapper.find('.ant-btn').hasClass('ant-btn-two-chinese-chars')).toBe(true); }); - it('have static perperty for type detecting', () => { + it('have static property for type detecting', () => { const wrapper = mount( );