Skip to content

Commit cd90bb4

Browse files
committed
address comment
1 parent ca8fec1 commit cd90bb4

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ install:
1111

1212
lint:
1313
npm run lint
14-
python scripts/fix.py --path ./aep/general/
15-
python scripts/validate_links.py
14+
python3 scripts/fix.py --path ./aep/general/
15+
python3 scripts/validate_links.py
1616

1717
check:
1818
npm run check
19-
python scripts/fix.py --check --path ./aep/general/
20-
python scripts/validate_links.py
19+
python3 scripts/fix.py --check --path ./aep/general/
20+
python3 scripts/validate_links.py

aep/general/0164/aep.md.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Create methods **must** adhere to one of the following:
6666

6767
- If a user attempts a create on a soft-deleted resource, the create **must**
6868
succeed, acting as if the resource did not exist previously.
69-
- The create must accept a field (query parameter for OAS),
69+
- The create **must** accept a field (query parameter for OAS),
7070
`overwrite_soft_deleted`. If set to `false`, the request **must** fail if a
7171
soft-deleted resource exists. If set to `true`, the request **must** succeed
7272
if the resource exists acting as if the resource did not exist previously.
@@ -78,7 +78,8 @@ default (unless `bool show_deleted` is true).
7878

7979
A `Get` AEP-131 request for a soft deleted resource **must** return with a
8080
`404 Not Found` response unless `bool show_deleted` is true, in which case
81-
soft-deleted resources **must** return the resource (with the `DELETED` state value if the resource includes a [`state` field](/states)).
81+
soft-deleted resources **must** return the resource (with the `DELETED` state
82+
value if the resource includes a [`state` field](/states)).
8283

8384
Services that soft delete resources **may** choose a reasonable strategy for
8485
purging those resources, including automatic purging after a reasonable time

0 commit comments

Comments
 (0)