Skip to content

Commit

Permalink
Fix missing colons in request docs; rename /path to /foo for consiste…
Browse files Browse the repository at this point in the history
…ncy with other examples (#1818)
  • Loading branch information
danielbprice authored Nov 20, 2023
1 parent 004f12f commit bbd085b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/request.rst
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ The body will also be passed to your function.
:caption: **openapi.yaml**
paths:
/path
/foo:
post:
operationId: api.foo_get
requestBody:
Expand Down Expand Up @@ -174,7 +174,7 @@ The body will also be passed to your function.
:caption: **swagger.yaml**
paths:
/path
/foo:
post:
consumes:
- application/json
Expand All @@ -201,7 +201,7 @@ The body will also be passed to your function.
:caption: **swagger.yaml**
paths:
/path
/foo:
post:
operationId: api.foo_get
consumes:
Expand Down Expand Up @@ -238,7 +238,7 @@ Connexion extracts the files from the body and passes them into your view functi
:caption: **openapi.yaml**
paths:
/path
/foo:
post:
operationId: api.foo_get
requestBody:
Expand All @@ -261,7 +261,7 @@ Connexion extracts the files from the body and passes them into your view functi
:caption: **swagger.yaml**
paths:
/path
/foo:
post:
consumes:
- application/json
Expand Down Expand Up @@ -614,4 +614,4 @@ request.
.. _Frameworks: https://github.com/spec-first/connexion/tree/main/examples/frameworks
.. _OpenAPI 3 specification: https://swagger.io/docs/specification/serialization
.. _Swagger 2 specification: https://swagger.io/docs/specification/2-0/describing-parameters/#array
.. _issue: https://github.com/spec-first/connexion/issues
.. _issue: https://github.com/spec-first/connexion/issues

0 comments on commit bbd085b

Please sign in to comment.