fix: typos in adjectives (#1010)

Also, add a bit more explanation
This commit is contained in:
Lance Finney
2024-06-18 14:46:20 -05:00
committed by GitHub
parent 3a118d3933
commit 056d88e7f7
2 changed files with 6 additions and 5 deletions

View File

@@ -10,9 +10,9 @@ export interface Currency {
export const currency: Currency[] = [
{ name: 'Euro', code: 'EUR', symbol: '€' },
{ name: 'Dollar US', code: 'USD', symbol: 'US$' },
{ name: 'Dollar Autralien', code: 'AUD', symbol: 'AU$' },
{ name: 'Livre Sterling', code: 'GBP', symbol: '£' },
{ name: 'Dollar Canadien', code: 'CAD', symbol: 'CAD' },
{ name: 'Dollar Australian', code: 'AUD', symbol: 'AU$' },
{ name: 'Pound Sterling', code: 'GBP', symbol: '£' },
{ name: 'Dollar Canadian', code: 'CAD', symbol: 'CAD' },
];
@Injectable()