mirror of
https://github.com/tristanpenman/valijson.git
synced 2024-12-13 10:32:58 +01:00
Fix up comments
This commit is contained in:
parent
c4f15c92cc
commit
caff3cdbd9
@ -115,6 +115,13 @@ private:
|
|||||||
Subschemas subschemas;
|
Subschemas subschemas;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Represents a combination 'if', 'then' and 'else' constraints
|
||||||
|
*
|
||||||
|
* The schema provided by an 'if' constraint is used as the expression for a conditional. When the
|
||||||
|
* target validates against that schema, the 'then' subschema will be also be tested. Otherwise,
|
||||||
|
* the 'else' subschema will be tested.
|
||||||
|
*/
|
||||||
class ConditionalConstraint: public BasicConstraint<ConditionalConstraint>
|
class ConditionalConstraint: public BasicConstraint<ConditionalConstraint>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -168,8 +175,8 @@ private:
|
|||||||
/**
|
/**
|
||||||
* @brief Represents a 'contains' constraint
|
* @brief Represents a 'contains' constraint
|
||||||
*
|
*
|
||||||
* An contains constraint provides a collection of values that must be present
|
* A 'contains' constraint specifies a schema that must be satisfied by at least one
|
||||||
* in an array.
|
* of the values in an array.
|
||||||
*/
|
*/
|
||||||
class ContainsConstraint: public BasicConstraint<ContainsConstraint>
|
class ContainsConstraint: public BasicConstraint<ContainsConstraint>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user