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:
" ( (?: [^"] | "")* ) " # - 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)