Skip to content

Commit ab360fc

Browse files
authored
CLOUDP-305862: change plural form in docs (#547)
1 parent d0c6db0 commit ab360fc

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

tools/spectral/ipa/rulesets/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Below is a list of all available rules, their descriptions and severity levels.
1010

1111
### IPA-005
1212

13-
Rule is based on [http://go/ipa/IPA-5](http://go/ipa/IPA-5).
13+
Rules are based on [http://go/ipa/IPA-5](http://go/ipa/IPA-5).
1414

1515
#### xgen-IPA-005-exception-extension-format
1616

@@ -27,7 +27,7 @@ Rule checks for the following conditions:
2727

2828
### IPA-102
2929

30-
Rule is based on [http://go/ipa/IPA-102](http://go/ipa/IPA-102).
30+
Rules are based on [http://go/ipa/IPA-102](http://go/ipa/IPA-102).
3131

3232
#### xgen-IPA-102-path-alternate-resource-name-path-param
3333

@@ -76,7 +76,7 @@ Rule checks for the following conditions:
7676

7777
### IPA-104
7878

79-
Rule is based on [http://go/ipa/IPA-104](http://go/ipa/IPA-104).
79+
Rules are based on [http://go/ipa/IPA-104](http://go/ipa/IPA-104).
8080

8181
#### xgen-IPA-104-resource-has-GET
8282

@@ -143,7 +143,7 @@ Rule checks for the following conditions:
143143

144144
### IPA-105
145145

146-
Rule is based on [http://go/ipa/IPA-105](http://go/ipa/IPA-105).
146+
Rules are based on [http://go/ipa/IPA-105](http://go/ipa/IPA-105).
147147

148148
#### xgen-IPA-105-list-method-response-code-is-200
149149

@@ -197,7 +197,7 @@ The response body of the List method should consist of the same resource object
197197

198198
### IPA-106
199199

200-
Rule is based on [http://go/ipa/IPA-106](http://go/ipa/IPA-106).
200+
Rules are based on [http://go/ipa/IPA-106](http://go/ipa/IPA-106).
201201

202202
#### xgen-IPA-106-create-method-request-body-is-request-suffixed-object
203203

@@ -277,7 +277,7 @@ Rule checks for the following conditions:
277277

278278
### IPA-107
279279

280-
Rule is based on [http://go/ipa/IPA-107](http://go/ipa/IPA-107).
280+
Rules are based on [http://go/ipa/IPA-107](http://go/ipa/IPA-107).
281281

282282
#### xgen-IPA-107-put-must-not-have-query-params
283283

@@ -317,7 +317,7 @@ Validation checks the PATCH method for single resource paths and [singleton reso
317317

318318
### IPA-108
319319

320-
Rule is based on [http://go/ipa/IPA-108](http://go/ipa/IPA-108).
320+
Rules are based on [http://go/ipa/IPA-108](http://go/ipa/IPA-108).
321321

322322
#### xgen-IPA-108-delete-response-should-be-empty
323323

@@ -369,7 +369,7 @@ Rule checks for the following conditions:
369369

370370
### IPA-109
371371

372-
Rule is based on [http://go/ipa/IPA-109](http://go/ipa/IPA-109).
372+
Rules are based on [http://go/ipa/IPA-109](http://go/ipa/IPA-109).
373373

374374
#### xgen-IPA-109-custom-method-must-be-GET-or-POST
375375

@@ -400,7 +400,7 @@ Rule checks for the following conditions:
400400

401401
### IPA-113
402402

403-
Rule is based on [http://go/ipa/IPA-113](http://go/ipa/IPA-113).
403+
Rules are based on [http://go/ipa/IPA-113](http://go/ipa/IPA-113).
404404

405405
#### xgen-IPA-113-singleton-must-not-have-id
406406

@@ -419,7 +419,7 @@ Rule checks for the following conditions:
419419

420420
### IPA-123
421421

422-
Rule is based on [http://go/ipa/IPA-123](http://go/ipa/IPA-123).
422+
Rules are based on [http://go/ipa/IPA-123](http://go/ipa/IPA-123).
423423

424424
#### xgen-IPA-123-enum-values-must-be-upper-snake-case
425425

tools/spectral/ipa/scripts/generateRulesetReadme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async function getRulesetsSection() {
3434
ipaNumbers.forEach((ipaNumber) => {
3535
const ipaRules = filterRulesByIpaNumber(ipaNumber, rules);
3636
const sections = generateRulesetSections(ipaRules);
37-
content += `### ${ipaNumber}\n\n` + `Rule is based on ${getIpaRulesetUrl(ipaNumber)}.\n\n` + `${sections}\n\n`;
37+
content += `### ${ipaNumber}\n\n` + `Rules are based on ${getIpaRulesetUrl(ipaNumber)}.\n\n` + `${sections}\n\n`;
3838
});
3939

4040
return content;

0 commit comments

Comments
 (0)