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

Commit

Permalink
Fix minor typos in style guide (#535)
Browse files Browse the repository at this point in the history
A few places to replace `it's` with `its`.
  • Loading branch information
Steve Ayers authored Mar 5, 2020
1 parent 388b233 commit 87468d6
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 87468d6

Please sign in to comment.