Fix typo in SQL comment

This commit is contained in:
jordi fita mas 2023-01-27 19:36:16 +01:00
parent 57d5137913
commit c0b1c22ee0
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ create domain currency_code as text
check (value ~ '^[A-Z]{3}$');
comment on domain currency_code is
'A correctly formated, but not necessarily valid, ISO 4217 currency code';
'A correctly formatted, but not necessarily valid, ISO 4217 currency code';
commit;