Skip to content

Commit cf1e2eb

Browse files
authored
Merge pull request github#1082 from jwilk/spelling
Fix spelling of "etc."
2 parents c4f3fcd + 95609e6 commit cf1e2eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/guides/delivering-deployments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ the output. First, let's complete our `process_deployment` method:
138138
``` ruby
139139
def process_deployment
140140
payload = JSON.parse(@payload['payload'])
141-
# you can send this information to your chat room, monitor, pager, e.t.c.
141+
# you can send this information to your chat room, monitor, pager, etc.
142142
puts "Processing '#{@payload['description']}' for #{payload['deploy_user']} to #{payload['environment']}"
143143
sleep 2 # simulate work
144144
@client.create_deployment_status("repos/#{@payload['repository']['full_name']}/deployments/#{@payload['id']}", 'pending')

content/v3/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To troubleshoot, ensure [you're authenticating correctly](/guides/getting-starte
2020

2121
## Why am I not seeing all my results?
2222

23-
Most API calls accessing a list of resources (_e.g._, users, issues, _e.t.c._) support
23+
Most API calls accessing a list of resources (_e.g._, users, issues, _etc._) support
2424
pagination. If you're making requests and receiving an incomplete set of results, you're
2525
probably only seeing the first page. You'll need to request the remaining pages
2626
in order to get more results.

0 commit comments

Comments
 (0)