Skip to content

Commit 455a118

Browse files
committed
Addressed PR feedback
1 parent 3eec194 commit 455a118

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/data/endpoints/account.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ endpoints:
2323
Edits your account settings.
2424
examples:
2525
curl: |
26-
curl -h "content-type: application/json" \
27-
-h "authorization: bearer $token" \
26+
curl -h "Content-Type: application/json" \
27+
-h "Authorization: Bearer $TOKEN" \
2828
-X PUT -d '{
2929
"address_1": "123 Main St.",
3030
"address_2": "Suite 101",
@@ -60,7 +60,7 @@ endpoints:
6060
examples:
6161
curl: |
6262
curl -h "Content-Type: application/json" \
63-
-h "Authorization: Bearer $TOKEn" \
63+
-h "Authorization: Bearer $TOKEN" \
6464
-X PUT -d '{
6565
"network_helper": true,
6666
"longview_subscription": "longview-10"

src/data/objects/account.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ schema:
2525
value: Suite 101
2626
city:
2727
type: String
28-
description: City portion of this account's billing address.
28+
description: The city for this account's billing address.
2929
value: Philadelphia
3030
state:
3131
type: String
32-
description: State (or province) portion of this account's billing address.
32+
description: >
33+
State portion of this account's billing address, or providence if you
34+
are outside of the United States.
3335
value: PA
3436
zip:
3537
type: String
36-
description: Zip Code portion of this account's billing address.
38+
description: The zip code for this account's billing address.
3739
value: 19102
3840
country:
3941
type: String

0 commit comments

Comments
 (0)