Fixed a comment typo in Linkify.tsx (#4825)

This commit is contained in:
Idan Moral 2021-02-05 00:30:21 +02:00 committed by GitHub
parent f811f5ab60
commit cd2c6351fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@ const linkify = LinkifyIt()
export type Props = {
text: string;
/** Allows you to customize now non-links are rendered. Simplest is just a <span>. */
/** Allows you to customize how non-links are rendered. Simplest is just a <span>. */
renderNonLink?: RenderTextCallbackType;
};