Fix typo: catched -> caught

This commit is contained in:
Yusuke Hayashi 2021-05-22 12:33:03 +09:00 committed by GitHub
parent 19ddbc47ca
commit a0082911ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -403,12 +403,12 @@ where typname = %s and ns.nspname = %s;
(?: # lower bound: (?: # lower bound:
" ( (?: [^"] | "")* ) " # - a quoted string " ( (?: [^"] | "")* ) " # - a quoted string
| ( [^",]+ ) # - or an unquoted string | ( [^",]+ ) # - or an unquoted string
)? # - or empty (not catched) )? # - or empty (not caught)
, ,
(?: # upper bound: (?: # upper bound:
" ( (?: [^"] | "")* ) " # - a quoted string " ( (?: [^"] | "")* ) " # - a quoted string
| ( [^"\)\]]+ ) # - or an unquoted string | ( [^"\)\]]+ ) # - or an unquoted string
)? # - or empty (not catched) )? # - or empty (not caught)
( \)|\] ) # upper bound flag ( \)|\] ) # upper bound flag
""", re.VERBOSE) """, re.VERBOSE)