From c827273d952f4dfd22195ed9b9366d6fc5cf732b Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 16 Sep 2022 07:01:26 +1000 Subject: [PATCH] docs: fix simple typo, idnetification -> identification There is a small typo in src/utils/text.py. Should read `identification` rather than `idnetification`. Signed-off-by: Tim Gates --- src/utils/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/text.py b/src/utils/text.py index 3c33f9b..732ed45 100644 --- a/src/utils/text.py +++ b/src/utils/text.py @@ -91,7 +91,7 @@ def make_link(m): host_part = parts[0] if host_part.startswith('www.'): - host_part = '.'.join(host_part.split('.')[1:]) # add extra idnetification for external link + host_part = '.'.join(host_part.split('.')[1:]) # add extra identification for external link if not local_domain or not host_part.endswith(local_domain): params += ' class="external" ' tb = True