Skip to content

Use 'an' rather than 'a' before vowel words #373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions snippets/python.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,15 @@
"async def ${1:funcname}(${2:parameter_list}):",
"\t${3:pass}"
],
"description": "Code snippet for a async statement"
"description": "Code snippet for an async statement"
},
"async/for": {
"prefix": "async/for",
"body": [
"async for ${1:target} in ${2:iter}:",
"\t${3:block}"
],
"description": "Code snippet for a async for statement"
"description": "Code snippet for an async for statement"
},
"async/for/else": {
"prefix": "async/for/else",
Expand All @@ -218,15 +218,15 @@
"else:",
"\t${4:block}"
],
"description": "Code snippet for a async for statement with else"
"description": "Code snippet for an async for statement with else"
},
"async/with": {
"prefix": "async/with",
"body": [
"async with ${1:expr} as ${2:var}:",
"\t${3:block}"
],
"description": "Code snippet for a async with statement"
"description": "Code snippet for an async with statement"
},
"ipdb": {
"prefix": "ipdb",
Expand Down