Skip to content

Commit bd0bba7

Browse files
authored
Merge pull request #27 from anthonychu/fix-typos-20191002
Fix typos
2 parents 6e8e7a7 + dbb537a commit bd0bba7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

azure/functions/_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def __set_body(self, body):
116116

117117
if not isinstance(body, (bytes, bytearray)):
118118
raise TypeError(
119-
f'reponse is expected to be either of '
119+
f'response is expected to be either of '
120120
f'str, bytes, or bytearray, got {type(body).__name__}')
121121

122122
self.__body = bytes(body)

azure/functions/_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __set_body(self, body):
6565

6666
if not isinstance(body, (bytes, bytearray)):
6767
raise TypeError(
68-
f'reponse is expected to be either of '
68+
f'response is expected to be either of '
6969
f'str, bytes, or bytearray, got {type(body).__name__}')
7070

7171
self.__body = bytes(body)

0 commit comments

Comments
 (0)