diff --git a/components/_util/index.en-US.md b/components/_util/index.en-US.md index 5e16a1cab7..5aa9136d02 100644 --- a/components/_util/index.en-US.md +++ b/components/_util/index.en-US.md @@ -39,13 +39,13 @@ type CheckboxGroupType = GetProps; ## GetProp -Get the single `props` property definition of the component. It has encapsulated `NonNullable`, so you don't have to worry about being empty: +Get the single `props` property definition of the component. It has encapsulated `NonNullable`, so you don't have to worry about it being empty: ```tsx import { Select } from 'antd'; import type { GetProp, SelectProps } from 'antd'; -// Both of this can work +// Both of these can work type SelectOptionType1 = GetProp[number]; type SelectOptionType2 = GetProp[number]; ```