Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Dec 5, 2024
1 parent 0dc8718 commit c77bb6e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 1 addition & 3 deletions doc/ref/jsonschema/json_schema/validate.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ to a [json_visitor](../../corelib/basic_json_visitor.md).
<td>reporter</td>
<td>A function object with signature equivalent to
<pre>
walk_result fun(const validation_message& msg)</pre>
which accepts an argument of type <a href="../validation_message.md">validation_message</a> and
returns a <a href="../walk_result.md">walk_result</a>.
<a href="../walk_result.md">walk_result</a> fun(const <a href="../validation_message.md">validation_message</a>& msg);</pre>
</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion doc/ref/jsonschema/json_validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ that is called for each schema violation.
<td>reporter</td>
<td>A function object with signature equivalent to
<pre>
void fun(const validation_output& msg)</pre>
void fun(const validation_output& msg);</pre>
which accepts an argument of type <a href="validation_output.md">validation_output</a>.</td>
</tr>
</table>
Expand Down
3 changes: 1 addition & 2 deletions doc/ref/jsonschema/make_json_schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ Returns a [json_schema<Json>](json_schema.md) that represents a compiled JSON Sc
<td>resolve</td>
<td>A function object with the signature of <code>resolve</code> being equivalent to
<pre>
Json fun(const <a href="../corelib/uri.md">jsoncons::uri</a>& uri);
</pre>
Json fun(const <a href="../corelib/uri.md">jsoncons::uri</a>& uri);</pre>
If unable to resolve the resource, it should return <code>Json::null()</code>.
</td>
</tr>
Expand Down
3 changes: 1 addition & 2 deletions doc/ref/jsonschema/make_schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ Returns a `shared_ptr` to a `json_schema<Json>`.
<td>resolver</td>
<td>A function object with the signature of <code>resolver</code> being equivalent to
<pre>
Json fun(const jsoncons::uri& uri)
</pre></td>
Json fun(const <a href="../corelib/uri.md">jsoncons::uri</a>& uri);</pre></td>
</tr>
</table>
Expand Down

0 comments on commit c77bb6e

Please sign in to comment.