From 9d898bdf479098190b0551300c0733e9f811961c Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Tue, 11 May 2021 22:32:05 +0530 Subject: [PATCH] Change word to improve meaning Signed-off-by: RMidhunSuresh --- src/domain/session/room/timeline/linkify/regex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/domain/session/room/timeline/linkify/regex.js b/src/domain/session/room/timeline/linkify/regex.js index b6e970cd..ca6e4320 100644 --- a/src/domain/session/room/timeline/linkify/regex.js +++ b/src/domain/session/room/timeline/linkify/regex.js @@ -18,7 +18,7 @@ const additional = `[\\/#][^\\s]*${end}`; /* Similarly, a URL not containing path or fragment must also end with a character that is not space nor punctuation. -However the ending character must also be ASCII. +Additionally, the ending character must also be ASCII. */ const nonASCII = "\\u{80}-\\u{10ffff}"; const endASCII = `[^\\s${nonASCII}.,?!]`;