Skip to content

Commit

Permalink
Merge pull request #3910 from tim-finnigan/minor-grammar-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt authored Oct 24, 2023
2 parents 1298d61 + 764506a commit 29b1640
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boto3/docs/waiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def document_resource_waiter(
service_module_name = get_service_module_name(service_model)
description = (
'Waits until this {} is {}. This method calls '
':py:meth:`{}.Waiter.{}.wait` which polls. '
':py:meth:`{}.Waiter.{}.wait` which polls '
':py:meth:`{}.Client.{}` every {} seconds until '
'a successful state is reached. An error is returned '
'after {} failed checks.'.format(
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/docs/test_docstring.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def test_resource_waiter_help(self):
(
' Waits until this Sample is complete. This method calls '
':py:meth:`MyService.Waiter.sample_operation_complete.wait` '
'which polls. :py:meth:`MyService.Client.sample_operation` every '
'which polls :py:meth:`MyService.Client.sample_operation` every '
'15 seconds until a successful state is reached. An error '
'is returned after 40 failed checks.'
),
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/docs/test_waiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_document_resource_waiters(self):
(
' Waits until this Sample is complete. This method calls '
':py:meth:`MyService.Waiter.sample_operation_complete.wait` '
'which polls. :py:meth:`MyService.Client.sample_operation` '
'which polls :py:meth:`MyService.Client.sample_operation` '
'every 15 seconds until a successful state is reached. An '
'error is returned after 40 failed checks.'
),
Expand Down

0 comments on commit 29b1640

Please sign in to comment.