Merge pull request #9385 from Revolution1/fix-typos-of-word-trevisions

trevisions -> revisions
This commit is contained in:
Gyuho Lee 2018-03-05 10:28:16 -08:00 committed by GitHub
commit 55a7b30377
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -706,7 +706,7 @@ Empty field.
| count_only | count_only when set returns only the count of the keys in the range. | bool | | count_only | count_only when set returns only the count of the keys in the range. | bool |
| min_mod_revision | min_mod_revision is the lower bound for returned key mod revisions; all keys with lesser mod revisions will be filtered away. | int64 | | min_mod_revision | min_mod_revision is the lower bound for returned key mod revisions; all keys with lesser mod revisions will be filtered away. | int64 |
| max_mod_revision | max_mod_revision is the upper bound for returned key mod revisions; all keys with greater mod revisions will be filtered away. | int64 | | max_mod_revision | max_mod_revision is the upper bound for returned key mod revisions; all keys with greater mod revisions will be filtered away. | int64 |
| min_create_revision | min_create_revision is the lower bound for returned key create revisions; all keys with lesser create trevisions will be filtered away. | int64 | | min_create_revision | min_create_revision is the lower bound for returned key create revisions; all keys with lesser create revisions will be filtered away. | int64 |
| max_create_revision | max_create_revision is the upper bound for returned key create revisions; all keys with greater create revisions will be filtered away. | int64 | | max_create_revision | max_create_revision is the upper bound for returned key create revisions; all keys with greater create revisions will be filtered away. | int64 |

View File

@ -2017,7 +2017,7 @@
"format": "int64" "format": "int64"
}, },
"min_create_revision": { "min_create_revision": {
"description": "min_create_revision is the lower bound for returned key create revisions; all keys with\nlesser create trevisions will be filtered away.", "description": "min_create_revision is the lower bound for returned key create revisions; all keys with\nlesser create revisions will be filtered away.",
"type": "string", "type": "string",
"format": "int64" "format": "int64"
}, },

View File

@ -296,7 +296,7 @@ type RangeRequest struct {
// greater mod revisions will be filtered away. // greater mod revisions will be filtered away.
MaxModRevision int64 `protobuf:"varint,11,opt,name=max_mod_revision,json=maxModRevision,proto3" json:"max_mod_revision,omitempty"` MaxModRevision int64 `protobuf:"varint,11,opt,name=max_mod_revision,json=maxModRevision,proto3" json:"max_mod_revision,omitempty"`
// min_create_revision is the lower bound for returned key create revisions; all keys with // min_create_revision is the lower bound for returned key create revisions; all keys with
// lesser create trevisions will be filtered away. // lesser create revisions will be filtered away.
MinCreateRevision int64 `protobuf:"varint,12,opt,name=min_create_revision,json=minCreateRevision,proto3" json:"min_create_revision,omitempty"` MinCreateRevision int64 `protobuf:"varint,12,opt,name=min_create_revision,json=minCreateRevision,proto3" json:"min_create_revision,omitempty"`
// max_create_revision is the upper bound for returned key create revisions; all keys with // max_create_revision is the upper bound for returned key create revisions; all keys with
// greater create revisions will be filtered away. // greater create revisions will be filtered away.

View File

@ -415,7 +415,7 @@ message RangeRequest {
int64 max_mod_revision = 11; int64 max_mod_revision = 11;
// min_create_revision is the lower bound for returned key create revisions; all keys with // min_create_revision is the lower bound for returned key create revisions; all keys with
// lesser create trevisions will be filtered away. // lesser create revisions will be filtered away.
int64 min_create_revision = 12; int64 min_create_revision = 12;
// max_create_revision is the upper bound for returned key create revisions; all keys with // max_create_revision is the upper bound for returned key create revisions; all keys with