Skip to content

Commit 074d2cc

Browse files
Doc fix (#22117)
1 parent b44962e commit 074d2cc

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

sdk/storage/azblob/blob/models.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ type Tags = generated.BlobTag
5151

5252
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
5353
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
54-
// which has an offset but no zero value count indicates from the offset to the resource's end.
54+
// which has an offset and zero value count indicates from the offset to the resource's end.
5555
type HTTPRange = exported.HTTPRange
5656

5757
// Request Model Declaration -------------------------------------------------------------------------------------------

sdk/storage/azblob/common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ func ParseURL(u string) (URLParts, error) {
3232

3333
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
3434
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
35-
// which has an offset but no zero value count indicates from the offset to the resource's end.
35+
// which has an offset and zero value count indicates from the offset to the resource's end.
3636
type HTTPRange = exported.HTTPRange

sdk/storage/azblob/internal/exported/exported.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
1515
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
16-
// which has an offset but no zero value count indicates from the offset to the resource's end.
16+
// which has an offset and zero value count indicates from the offset to the resource's end.
1717
type HTTPRange struct {
1818
Offset int64
1919
Count int64

sdk/storage/azdatalake/common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func ParseURL(u string) (URLParts, error) {
3333

3434
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
3535
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
36-
// which has an offset but no zero value count indicates from the offset to the resource's end.
36+
// which has an offset and zero value count indicates from the offset to the resource's end.
3737
type HTTPRange = exported.HTTPRange
3838

3939
// ===================================== LEASE CONSTANTS ============================================================

sdk/storage/azdatalake/file/models.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ type SetExpiryOptions struct {
516516

517517
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
518518
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
519-
// which has an offset but no zero value count indicates from the offset to the resource's end.
519+
// which has an offset and zero value count indicates from the offset to the resource's end.
520520
type HTTPRange = exported.HTTPRange
521521

522522
// ================================= path imports ==================================

sdk/storage/azdatalake/internal/exported/exported.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const SnapshotTimeFormat = "2006-01-02T15:04:05.0000000Z07:00"
1919

2020
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
2121
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
22-
// which has an offset but no zero value count indicates from the offset to the resource's end.
22+
// which has an offset and zero value count indicates from the offset to the resource's end.
2323
type HTTPRange = blob.HTTPRange
2424

2525
// FormatHTTPRange converts an HTTPRange to its string format.

sdk/storage/azfile/file/models.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type SourceModifiedAccessConditions = generated.SourceModifiedAccessConditions
5454

5555
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
5656
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
57-
// which has an offset but no zero value count indicates from the offset to the resource's end.
57+
// which has an offset and zero value count indicates from the offset to the resource's end.
5858
type HTTPRange = exported.HTTPRange
5959

6060
// ShareFileRangeList - The list of file ranges.

sdk/storage/azfile/internal/exported/exported.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
// HTTPRange defines a range of bytes within an HTTP resource, starting at offset and
1515
// ending at offset+count. A zero-value HTTPRange indicates the entire resource. An HTTPRange
16-
// which has an offset but no zero value count indicates from the offset to the resource's end.
16+
// which has an offset and zero value count indicates from the offset to the resource's end.
1717
type HTTPRange struct {
1818
Offset int64
1919
Count int64

0 commit comments

Comments
 (0)