Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(functions): expand xor function and add exclusive option for or functionality #2616

Closed
Prev Previous commit
Next Next commit
Use original language: Communicate
cuttingclyde committed May 2, 2024
commit 443ffbdfbb85bdb3935ba66833574120c0bb26c4
4 changes: 2 additions & 2 deletions docs/reference/functions.md
Original file line number Diff line number Diff line change
@@ -247,7 +247,7 @@ unused-definition:

## or

Communicates that one or more of these properties is required to be defined. FunctionOptions must contain any non-zero number of properties, **or** will require that _at least_ one of them is defined. (For only one property specified, this is the same as the `defined` rule for that property.)
Communicate that one or more of these properties is required to be defined. FunctionOptions must contain any non-zero number of properties, **or** will require that _at least_ one of them is defined. (For only one property specified, this is the same as the `defined` rule for that property.)

<!-- title: functionOptions -->

@@ -272,7 +272,7 @@ schemas-descriptive-text-exists:

## xor

Communicates that one of these properties is required, and no more than one is allowed to be defined. FunctionOptions must contain any non-zero number of properties, **xor** will require that _exactly_ one of them is defined. (For only one property specified, this is the same as the `defined` rule for that property.)
Communicate that one of these properties is required, and no more than one is allowed to be defined. FunctionOptions must contain any non-zero number of properties, **xor** will require that _exactly_ one of them is defined. (For only one property specified, this is the same as the `defined` rule for that property.)

<!-- title: functionOptions -->