Fix typo in python/comprehension.json | dictories -> dictionaries (#448)

This commit is contained in:
JR 2024-05-28 05:09:27 +02:00 committed by GitHub
parent aa1583f851
commit 2a31b7f618
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,12 +17,12 @@
"Dictionary comprehension": {
"prefix": "dc",
"body": "{${1:key}: ${2:value} for ${3:key}, ${4:value} in ${5:iterable}}$0",
"description": "Handy and faster way to create dictories based on existing dictionaries."
"description": "Handy and faster way to create dictionaries based on existing dictionaries."
},
"Dictionary comprehension if filter": {
"prefix": "dci",
"body": "{${1:key}: ${2:value} for ${3:key}, ${4:value} in ${5:iterable} if ${6:condition}}$0",
"description": "Handy and faster way to create dictories based on existing dictionaries, with conditional if statement."
"description": "Handy and faster way to create dictionaries based on existing dictionaries, with conditional if statement."
},
"Set comprehension": {
"prefix": "sc",