From a0082911ad15d0632a683de7c8173f6092edff3c Mon Sep 17 00:00:00 2001 From: Yusuke Hayashi Date: Sat, 22 May 2021 12:33:03 +0900 Subject: [PATCH] Fix typo: catched -> caught --- lib/_range.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/_range.py b/lib/_range.py index a59bab84..57566b5c 100644 --- a/lib/_range.py +++ b/lib/_range.py @@ -403,12 +403,12 @@ where typname = %s and ns.nspname = %s; (?: # lower bound: " ( (?: [^"] | "")* ) " # - a quoted string | ( [^",]+ ) # - or an unquoted string - )? # - or empty (not catched) + )? # - or empty (not caught) , (?: # upper bound: " ( (?: [^"] | "")* ) " # - a quoted string | ( [^"\)\]]+ ) # - or an unquoted string - )? # - or empty (not catched) + )? # - or empty (not caught) ( \)|\] ) # upper bound flag """, re.VERBOSE)