Fix typos

This commit is contained in:
xiaolou86 2023-12-07 15:00:54 +08:00 committed by Jon Chambers
parent 3cf1b92dfc
commit 049b901d63
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ service Accounts {
/**
* Sets the username hash/encrypted username to a previously-reserved value
* (see `ReserveUsernameHash`). This RPC may fail with a status of
* `FAILED_PRECONDITION` if no reserved username hash was foudn for the given
* `FAILED_PRECONDITION` if no reserved username hash was found for the given
* account or `NOT_FOUND` if the reservation has lapsed and been claimed by
* another caller. It may also fail with a `RESOURCE_EXHAUSTED` if a rate
* limit for modifying usernames has been exceeded, in which case a

View File

@ -61,7 +61,7 @@ extend google.protobuf.FieldOptions {
optional bool specified = 70002;
/*
Requires a size/length of a field to be withing certain bounderies.
Requires a size/length of a field to be within certain boundaries.
Applies to both `optional` and regular fields, i.e. if the field is not set or has a default value,
its size considered to be zero.
@ -115,7 +115,7 @@ extend google.protobuf.FieldOptions {
optional bool e164 = 70005;
/*
Requires an integer value to be within a certain range. The range bounderies are specified
Requires an integer value to be within a certain range. The range boundaries are specified
with the values of type `int32`, which should be enough for all practical purposes.
If the field is `optional`, this check allows a value to be not set.