Skip to content

Commit 5bc77a2

Browse files
fix typo
1 parent cfc9c32 commit 5bc77a2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

DEVGUIDE-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ with requests.put(pre_result.url, headers=pre_result.signed_headers, data=data)
778778

779779
分页器 包含了 分页器对象 '\<OperationName\>Paginator' 和 分页器创建方法 '\<OperationName\>_paginator'。分页器创建方法返回一个分页器对象,该对象实现了 'iter_page' 方法,用于调用操作来获取下一页。
780780

781-
分页器创建方法 '\<OperationName\>_paginator' 里的 request 参数类型 与 '\<OperationName\>' 接口中的 reqeust 参数类型一致。
781+
分页器创建方法 '\<OperationName\>_paginator' 里的 request 参数类型 与 '\<OperationName\>' 接口中的 request 参数类型一致。
782782

783783
'\<OperationName\>_paginator.iter_page' 返回的结果类型 和 '\<OperationName\>' 接口 返回的结果类型 一致。
784784

README-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def main():
124124
body=f,
125125
))
126126

127-
print(f'put object sucessfully, ETag {result.etag}')
127+
print(f'put object successfully, ETag {result.etag}')
128128

129129

130130
if __name__ == "__main__":

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def main():
124124
body=f,
125125
))
126126

127-
print(f'put object sucessfully, ETag {result.etag}')
127+
print(f'put object successfully, ETag {result.etag}')
128128

129129

130130
if __name__ == "__main__":

sample/restore_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def main():
5050
))
5151

5252
if result.restore and result.restore != 'ongoing-request="true"':
53-
print('restore is sucess')
53+
print('restore is success')
5454
break
5555
time.sleep(5)
5656
print(result.restore)

0 commit comments

Comments
 (0)