Skip to content

Commit 093c0e8

Browse files
authored
Merge pull request #342 from timgates42/bugfix_typos
docs: fix a few simple typos
2 parents 473ea28 + 511b9b1 commit 093c0e8

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ droplet.create()
270270

271271
### Creating a Firewall
272272

273-
This example creates a firewall that only accepts inbound tcp traffic on port 80 from a specific load balancer and allows outbout tcp traffic on all ports to all addresses.
273+
This example creates a firewall that only accepts inbound tcp traffic on port 80 from a specific load balancer and allows outbound tcp traffic on all ports to all addresses.
274274

275275
```python
276276
from digitalocean import Firewall, InboundRule, OutboundRule, Destinations, Sources
@@ -405,7 +405,7 @@ print(manager.ratelimit_limit)
405405

406406
## Session customization
407407

408-
You can take advandtage of the [requests](http://docs.python-requests.org/en/master/) library and configure the HTTP client under python-digitalocean.
408+
You can take advantage of the [requests](http://docs.python-requests.org/en/master/) library and configure the HTTP client under python-digitalocean.
409409

410410
### Configure retries in case of connection error
411411

digitalocean/Domain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def delete_domain_record(self, *args, **kwargs):
138138

139139
def create(self):
140140
"""
141-
Create new doamin
141+
Create new domain
142142
"""
143143
# URL https://api.digitalocean.com/v2/domains
144144
data = {

digitalocean/LoadBalancer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def get_object(cls, api_token, id):
177177

178178
def load(self):
179179
"""
180-
Loads updated attributues for a LoadBalancer object.
180+
Loads updated attributes for a LoadBalancer object.
181181
182182
Requires self.id to be set.
183183
"""

digitalocean/VPC.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class VPC(BaseAPI):
2525
CIDR notation
2626
* urn (str): The uniform resource name (URN) for the VPC
2727
* created_at (str): A string that represents when the VPC was created
28-
* default (bool): A boolen representing whether or not the VPC is the \
28+
* default (bool): A boolean representing whether or not the VPC is the \
2929
user's default VPC for the region
3030
"""
3131
def __init__(self, *args, **kwargs):

0 commit comments

Comments
 (0)