Skip to content

Commit 8567ffc

Browse files
committed
Fix #1809: Correct incorrect description of schema requirements
- The if-then-else section incorrectly describes the requirements of the `else` schema. - Fix the description to match the `else` schema. - Fixes #1809
1 parent e97ceb0 commit 8567ffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/learn/miscellaneous-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ If the value of `isMember` is true:
403403
* The `then` block is applied, which specifies that the `membershipNumber` property should be a string with a minimum length of 10 and a maximum length of 10.
404404

405405
If the value of `isMember` is anything other than true:
406-
* The `else` block is applied, which specifies that the `membershipNumber` property can be any string.
406+
* The `else` block is applied, which specifies that the `membershipNumber` property should be a string with a minimum length of 15.
407407

408408
```json
409409
{

0 commit comments

Comments
 (0)