Skip to content

Commit 151978d

Browse files
author
Jared Hendrickson
committed
Fixed small typos in docs
1 parent fe4b33b commit 151978d

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pfSense API uses the same privileges as the pfSense webConfigurator. The require
8282

8383

8484
# Content Types
85-
pfSense API can handle a few different content types. Please note, if a `Content-Type` header is not specified in your request pfSense API will attempt to determine the
85+
pfSense API can handle a few different content types. Please note, if a `Content-Type` header is not specified in your request, pfSense API will attempt to determine the
8686
content type which may have undesired results. It is recommended you specify your preferred `Content-Type` on each request. While several content types may be enabled,
8787
`application/json` is the recommended content type. Supported content types are:
8888

@@ -94,7 +94,7 @@ Parses the request body as a JSON formatted string. This is the recommended cont
9494
Example:
9595

9696
```
97-
curl -s -H "Content-Type: application/json" -d '{"client-id": "admin", "client-token": "pfsense"}' -X GET https://pfsense.example.com/api/v1/firewall/rule
97+
curl -s -H "Content-Type: application/json" -d '{"client-id": "admin", "client-token": "pfsense"}' -X GET https://pfsense.example.com/api/v1/system/arp
9898
{
9999
"status": "ok",
100100
"code": 200,
@@ -129,7 +129,7 @@ Parses the request body as URL encoded parameters.
129129
Example:
130130

131131
```
132-
curl -s -H "Content-Type: application/x-www-form-urlencoded" -X GET "https://pfsense.example.com/api/v1/firewall/rule?client-id=admin&client-token=pfsense"
132+
curl -s -H "Content-Type: application/x-www-form-urlencoded" -X GET "https://pfsense.example.com/api/v1/system/arp?client-id=admin&client-token=pfsense"
133133
{
134134
"status": "ok",
135135
"code": 200,

0 commit comments

Comments
 (0)