diff --git a/src/utility-types.ts b/src/utility-types.ts index 7755466..dce54f5 100644 --- a/src/utility-types.ts +++ b/src/utility-types.ts @@ -104,7 +104,7 @@ export type $ElementType< * @example * // Common use-case * const add = (amount: number) => ({ type: 'ADD' as 'ADD', payload: amount }); - * type AddAction = $Call; // { type: 'ADD'; payload: number } + * type AddAction = $Call; // { type: 'ADD'; payload: number } * * // Examples migrated from Flow docs * type ExtractPropType = (arg: T) => T['prop'];