Skip to content

Commit

Permalink
Fix typo (#28815)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenttran-msft authored Feb 15, 2023
1 parent b18e18a commit 393ea48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -574,10 +574,10 @@ def read(self, size: Optional[int] = -1) -> T:
is unspecified or is -1, all bytes will be read.
:param size:
The number of bytes to download from the stream. Leave unsepcified
The number of bytes to download from the stream. Leave unspecified
or set to -1 to download all bytes.
:returns:
The requsted data as bytes or a string if encoding was speicified. If
The requested data as bytes or a string if encoding was specified. If
the return value is empty, there is no more data to read.
:rtype: T
"""
Expand Down Expand Up @@ -651,7 +651,7 @@ def readall(self) -> T:
Read the entire contents of this blob.
This operation is blocking until all data is downloaded.
:returns: The requsted data as bytes or a string if encoding was speicified.
:returns: The requested data as bytes or a string if encoding was specified.
:rtype: T
"""
stream = BytesIO()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -461,10 +461,10 @@ async def read(self, size: Optional[int] = -1) -> T:
is unspecified or is -1, all bytes will be read.
:param size:
The number of bytes to download from the stream. Leave unsepcified
The number of bytes to download from the stream. Leave unspecified
or set to -1 to download all bytes.
:returns:
The requsted data as bytes or a string if encoding was speicified. If
The requested data as bytes or a string if encoding was specified. If
the return value is empty, there is no more data to read.
:rtype: T
"""
Expand Down Expand Up @@ -557,7 +557,7 @@ async def readall(self) -> T:
Read the entire contents of this blob.
This operation is blocking until all data is downloaded.
:returns: The requsted data as bytes or a string if encoding was speicified.
:returns: The requested data as bytes or a string if encoding was specified.
:rtype: T
"""
stream = BytesIO()
Expand Down

0 comments on commit 393ea48

Please sign in to comment.