From cd2c6351fce8de76d2fc3facae49e2dd112953fd Mon Sep 17 00:00:00 2001 From: Idan Moral Date: Fri, 5 Feb 2021 00:30:21 +0200 Subject: [PATCH] Fixed a comment typo in Linkify.tsx (#4825) --- ts/components/conversation/Linkify.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/conversation/Linkify.tsx b/ts/components/conversation/Linkify.tsx index c5f4f55855..78b4063acf 100644 --- a/ts/components/conversation/Linkify.tsx +++ b/ts/components/conversation/Linkify.tsx @@ -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 . */ + /** Allows you to customize how non-links are rendered. Simplest is just a . */ renderNonLink?: RenderTextCallbackType; };