Skip to content
This repository has been archived by the owner on Mar 4, 2022. It is now read-only.

Fix minor typos in style guide #535

Merged
merged 1 commit into from
Mar 5, 2020
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
6 changes: 3 additions & 3 deletions style/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ package uber.finance.ccap.v1;
Package sub-names cannot be any of the following.

- `internal` - This is effectively a reserved keyword in Golang and results in the generated
package not being accessible outside of it's context.
package not being accessible outside of its context.
- `public` - This is a reserved keyword in many languages.
- `private` - This is a reserved keyword in many languages.
- `protected` - This is a reserved keyword in many languages.
Expand Down Expand Up @@ -256,7 +256,7 @@ All files should be ordered in the following manner.
Protobuf definitions should go into one of two types of files: **Service files** or
**Supporting files**.
A service file contains exactly one service, and it's corresponding request and response messages.
A service file contains exactly one service, and its corresponding request and response messages.
This file is named after the service, substituting `PascalCase` for `lower_snake_case`. The service
should be the first element in the file, with requests and responses sorted to match the order
of the declared service methods.
Expand Down Expand Up @@ -1011,7 +1011,7 @@ All services and RPCs require a comment that contains at least one complete sent
[Documentation](#documentation) section for more details.

Please read the above [File Structure](#file-structure) section carefully. Each service should
be in it's own file named after the service. For example, `TripAPI` should be in a file named
be in its own file named after the service. For example, `TripAPI` should be in a file named
`trip_api.proto`.

Every RPC request and response should be unique to the RPC, and named after the RPC. As per the
Expand Down