Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some English semantics and grammar #16

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ paths:
get:
operationId: get-bookings
summary: List existing bookings
description: Returns a list of all trips booking by the authenticated user.
description: Returns a list of all trip bookings by the authenticated user.
tags:
- Bookings
responses:
Expand Down Expand Up @@ -910,8 +910,8 @@ components:
headers:
RateLimit:
description: |
The RateLimit header is communicate quota policies, and contains a `limit` to
conveys the expiring limit, `remaining` to convey the remaining quota units,
The RateLimit header communicates quota policies. It contains a `limit` to
convey the expiring limit, `remaining` to convey the remaining quota units,
and `reset` to convey the time window reset time.
schema:
type: string
Expand Down Expand Up @@ -994,15 +994,15 @@ components:
type: https://example.com/errors/forbidden
title: Forbidden
status: 403
detail: Access is forbidden for the provided credentials.
detail: Access is forbidden with the provided credentials.
application/problem+xml:
schema:
$ref: '#/components/schemas/Problem'
example:
type: https://example.com/errors/forbidden
title: Forbidden
status: 403
detail: Access is forbidden for the provided credentials.
detail: Access is forbidden with the provided credentials.

InternalServerError:
description: Internal Server Error
Expand Down
Loading