Skip to content

Commit a015bf9

Browse files
jeffwidmanbrettcannon
authored andcommitted
Use 'an' rather than 'a' before vowel words (#373)
1 parent 4b34f7d commit a015bf9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

snippets/python.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@
200200
"async def ${1:funcname}(${2:parameter_list}):",
201201
"\t${3:pass}"
202202
],
203-
"description": "Code snippet for a async statement"
203+
"description": "Code snippet for an async statement"
204204
},
205205
"async/for": {
206206
"prefix": "async/for",
207207
"body": [
208208
"async for ${1:target} in ${2:iter}:",
209209
"\t${3:block}"
210210
],
211-
"description": "Code snippet for a async for statement"
211+
"description": "Code snippet for an async for statement"
212212
},
213213
"async/for/else": {
214214
"prefix": "async/for/else",
@@ -218,15 +218,15 @@
218218
"else:",
219219
"\t${4:block}"
220220
],
221-
"description": "Code snippet for a async for statement with else"
221+
"description": "Code snippet for an async for statement with else"
222222
},
223223
"async/with": {
224224
"prefix": "async/with",
225225
"body": [
226226
"async with ${1:expr} as ${2:var}:",
227227
"\t${3:block}"
228228
],
229-
"description": "Code snippet for a async with statement"
229+
"description": "Code snippet for an async with statement"
230230
},
231231
"ipdb": {
232232
"prefix": "ipdb",

0 commit comments

Comments
 (0)