Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbraganza committed Feb 23, 2024
1 parent 63b2344 commit 21ccc44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions csi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1977,7 +1977,7 @@ message GetMetadataAllocatedRequest {
// the requested starting_offset: i.e. if S is the requested
// starting_offset, and B0 is block_metadata[0] of the first message
// in the response stream, then either (S < B0.byte_offset) must be
// true or (S < B0.byte_offset + B0.size_bytes) must be true.
// true or else (S < B0.byte_offset + B0.size_bytes) must be true.
// This field is REQUIRED.
int64 starting_offset = 2;

Expand Down Expand Up @@ -2060,7 +2060,7 @@ message GetMetadataDeltaRequest {
// the requested starting_offset: i.e. if S is the requested
// starting_offset, and B0 is block_metadata[0] of the first message
// in the response stream, then either (S < B0.byte_offset) must be
// true or (S < B0.byte_offset + B0.size_bytes) must be true.
// true or else (S < B0.byte_offset + B0.size_bytes) must be true.
// This field is REQUIRED.
int64 starting_offset = 3;

Expand Down
4 changes: 2 additions & 2 deletions lib/go/csi/csi.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -3264,7 +3264,7 @@ message GetMetadataAllocatedRequest {
// the requested starting_offset: i.e. if S is the requested
// starting_offset, and B0 is block_metadata[0] of the first message
// in the response stream, then either (S < B0.byte_offset) must be
// true or (S < B0.byte_offset + B0.size_bytes) must be true.
// true or else (S < B0.byte_offset + B0.size_bytes) must be true.
// This field is REQUIRED.
int64 starting_offset = 2;
Expand Down Expand Up @@ -3365,7 +3365,7 @@ message GetMetadataDeltaRequest {
// the requested starting_offset: i.e. if S is the requested
// starting_offset, and B0 is block_metadata[0] of the first message
// in the response stream, then either (S < B0.byte_offset) must be
// true or (S < B0.byte_offset + B0.size_bytes) must be true.
// true or else (S < B0.byte_offset + B0.size_bytes) must be true.
// This field is REQUIRED.
int64 starting_offset = 3;
Expand Down

0 comments on commit 21ccc44

Please sign in to comment.