Skip to content

Commit c047695

Browse files
chores
1 parent dcf4ea4 commit c047695

File tree

1 file changed

+4
-4
lines changed
  • pages/understanding-json-schema/reference

1 file changed

+4
-4
lines changed

pages/understanding-json-schema/reference/type.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ floating-point.
7272
[tab "Perl"]
7373

7474
The following table maps from the names of JSON types to
75-
their analogous types in Objective-C:
75+
their analogous types in Perl:
7676

7777
| JSON | Perl |
7878
|---------|--------------------------------------------------|
@@ -85,7 +85,7 @@ their analogous types in Objective-C:
8585

8686
[tab "Objective-C"]
8787

88-
The following table maps from the names of JavaScript types to
88+
The following table maps from the names of JSON types to
8989
their analogous types in Objective-C:
9090

9191
| JSON | Objective-C |
@@ -105,7 +105,7 @@ value for identity (pointer equality) to `@YES` and `@NO` constants.
105105

106106
[tab "Swift"]
107107

108-
The following table maps from the names of JavaScript types to
108+
The following table maps from the names of JSON types to
109109
their analogous types in Swift:
110110

111111
| JSON | Swift |
@@ -129,7 +129,7 @@ The `type` keyword can take two forms:
129129

130130
1. **A single string**. When it is a single string, it must be one of the types mentioned above (`array`, `boolean`, `integer`, `number`, `null`, `object`, `regular expressions`, or `string`). This specifies that the instance data is only valid when it matches that specific type.
131131

132-
Here is an example of using the `string` keyword as a single string:
132+
Here is an example of using the `number` keyword as a single string:
133133

134134
```json
135135
// props { "isSchema": true }

0 commit comments

Comments
 (0)