Skip to content

Commit ac42a22

Browse files
authored
Fix anyOf typo (#1753)
1 parent 7296338 commit ac42a22

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/usage/oneof.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
react-jsonschema-form supports custom widgets for oneOf, anyOf, and allOf.
44

5-
- A schema with oneOf is valid if *exactly one* of the subschemas is valid.
6-
- A schema with allOf is valid if *at least one* of the subschemas is valid.
7-
- A schema with allOf is valid if *all* of the subschemas are valid.
5+
- A schema with `oneOf` is valid if *exactly one* of the subschemas is valid.
6+
- A schema with `anyOf` is valid if *at least one* of the subschemas is valid.
7+
- A schema with `allOf` is valid if *all* of the subschemas are valid.
88

99
## oneOf
1010

@@ -88,4 +88,4 @@ const schema = {
8888
render((
8989
<Form schema={schema} />
9090
), document.getElementById("app"));
91-
```
91+
```

0 commit comments

Comments
 (0)