Skip to content

Commit aeb8cba

Browse files
Fix typos in README (#128)
1 parent 46febb2 commit aeb8cba

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
33
![Release](https://img.shields.io/github/v/release/netbox-community/ansible_modules)
44

5-
# Netbox modules for Ansible using Ansible Collections
5+
# NetBox modules for Ansible using Ansible Collections
66

77
We have moved this collection to a different namespace and collection name on Ansible Galaxy. The new versions will be at `netbox.netbox`.
88

9-
To keep the code simple, we only officially support the two latesst releases of Netbox and don't guarantee backwards compatibility beyond that. We do try and keep these breaking changes to a minimum, but sometimes changes to NetBox's API cause us to have to make breaking changes.
9+
To keep the code simple, we only officially support the two latest releases of NetBox and don't guarantee backwards compatibility beyond that. We do try and keep these breaking changes to a minimum, but sometimes changes to NetBox's API cause us to have to make breaking changes.
1010

1111
## Requirements
1212

@@ -51,7 +51,7 @@ To keep the code simple, we only officially support the two latesst releases of
5151
- netbox_vlan
5252
- netbox_vrf
5353

54-
## Netbox Plugins
54+
## NetBox Plugins
5555

5656
- netbox lookup plugin
5757
- netbox inventory plugin (0.1.5)
@@ -72,15 +72,15 @@ To keep the code simple, we only officially support the two latesst releases of
7272
Using the **collections** at the play level
7373

7474
```yaml
75-
- name: "Test Netbox modules"
75+
- name: "Test NetBox modules"
7676
connection: local
7777
hosts: localhost
7878
gather_facts: False
7979
collections:
8080
- netbox.netbox
8181

8282
tasks:
83-
- name: Create device within Netbox with only required information
83+
- name: Create device within NetBox with only required information
8484
netbox_device:
8585
netbox_url: http://netbox-demo.org:32768
8686
netbox_token: 0123456789abcdef0123456789abcdef01234567
@@ -96,13 +96,13 @@ Using the **collections** at the play level
9696
Using the **collections** at the task level
9797
9898
```yaml
99-
- name: "Test Netbox modules"
99+
- name: "Test NetBox modules"
100100
connection: local
101101
hosts: localhost
102102
gather_facts: False
103103

104104
tasks:
105-
- name: Create device within Netbox with only required information
105+
- name: Create device within NetBox with only required information
106106
netbox.netbox.netbox_device:
107107
netbox_url: http://netbox-demo.org:32768
108108
netbox_token: 0123456789abcdef0123456789abcdef01234567
@@ -119,7 +119,7 @@ Using the **collections** in a role's task files
119119
120120
```yaml
121121
---
122-
- name: Create device within Netbox with only required information
122+
- name: Create device within NetBox with only required information
123123
netbox.netbox.netbox_device:
124124
netbox_url: http://netbox-demo.org:32768
125125
netbox_token: 0123456789abcdef0123456789abcdef01234567
@@ -134,7 +134,7 @@ Using the **collections** in a role's task files
134134
OR
135135

136136
---
137-
- name: Create device within Netbox with only required information
137+
- name: Create device within NetBox with only required information
138138
collections:
139139
- netbox.netbox
140140
netbox_device:

0 commit comments

Comments
 (0)