Skip to content

Commit 41b4ac3

Browse files
authored
Fix typo in excluding-props.md (#693)
1 parent 53d9a7a commit 41b4ac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/hoc/excluding-props.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function withInjectedProps<U extends Record<string, unknown>>(
9595
) {
9696
return function <T extends U>(Component: React.ComponentType<T>) {
9797
return function (props: Omit<T, keyof U>): React.JSX.Element {
98-
//A type coercion is neccessary because TypeScript doesn't know that the Omit<T, keyof U> + {...injectedProps} = T
98+
//A type coercion is necessary because TypeScript doesn't know that the Omit<T, keyof U> + {...injectedProps} = T
9999
const newProps = { ...props, ...injectedProps } as T;
100100
return <Component {...newProps} />;
101101
};

0 commit comments

Comments
 (0)