Skip to content

Commit a688663

Browse files
committed
Fix typos brought to my attention
1 parent 4367d0a commit a688663

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

reports/processing-model-details.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ paths:
4545
$ref: "#/components/schemas/foo"
4646
```
4747
48-
For the entry point context (at location `#/`), we might either pass this whole document to a tool to process, or it might be encountered as an HTTP response with `Content-Type` set to `application/openapi+yaml`.
48+
For the entry point context (at location `#`), we might either pass this whole document to a tool to process, or it might be encountered as an HTTP response with `Content-Type` set to `application/openapi+yaml`.
4949

5050
Here are all of the parent contexts within the document (Recall that in OAS 3.1, the Schema Object directly supports references, and is never replaced by a Reference Object):
5151

@@ -245,7 +245,7 @@ components:
245245
in: header
246246
paths:
247247
/x:
248-
$ref: ./components#/components/pathItems/x
248+
$ref: ./components#/components/pathItems/anItem
249249
```
250250

251251
...and our components document, `https://example.com/openapi/components`
@@ -259,7 +259,7 @@ components:
259259
name: X-API-Key
260260
in: query
261261
pathItems:
262-
x:
262+
anItem:
263263
get:
264264
security:
265265
- key: []
@@ -616,7 +616,7 @@ If full document-driven processing is to be defined for any OAS version, conflic
616616
Document-driven processing is substantially simplified if all documents MUST be proper OpenAPI documents (with an OpenAPI Object at the root) or JSON Schemas. If documents consisting of some other Object, or consisting of several Objects embedded in generic JSON or YAML are supported, certain things need to be addressed:
617617

618618
* Expectations should be set about how MAY, SHOULD, or MUST support loading such documents
619-
* It should be clarified whether an entry point document MUST be a document, or can be an OpenAPI Object embededd in some other file
619+
* It should be clarified whether an entry point document MUST be a document, or can be an OpenAPI Object embeded in some other file
620620
* Embedding an OpenAPI Object has two potential cases: arbitrary file structures, and formal embedding in another format, just as JSON Schema is embedded within the OAS
621621

622622
### Hybrid processing for OAS 3.1

0 commit comments

Comments
 (0)