@@ -68,7 +68,7 @@ class PollingFuture(base.Future):
6868 The :meth:`done` method should be implemented by subclasses. The polling
6969 behavior will repeatedly call ``done`` until it returns True.
7070
71- The actuall polling logic is encapsulated in :meth:`result` method. See
71+ The actual polling logic is encapsulated in :meth:`result` method. See
7272 documentation for that method for details on how polling works.
7373
7474 .. note::
@@ -82,7 +82,7 @@ class PollingFuture(base.Future):
8282 ``timeout`` argument is specified in :meth:`result` method it will
8383 override the ``polling.timeout`` property.
8484 retry (google.api_core.retry.Retry): DEPRECATED use ``polling`` instead.
85- If set, it will override ``polling`` paremeter for backward
85+ If set, it will override ``polling`` parameter for backward
8686 compatibility.
8787 """
8888
@@ -224,8 +224,8 @@ class documentation for the proper definition of timeout and deadline
224224 to set this parameter explicitly.
225225
226226 If ``polling`` is provided (i.e. ``polling is not None``), it will be used
227- to controll the overall polling behavior and ``polling.timeout`` will
228- controll Polling Timeout unless it is overridden by ``timeout`` parameter
227+ to control the overall polling behavior and ``polling.timeout`` will
228+ control Polling Timeout unless it is overridden by ``timeout`` parameter
229229 as described above. If not provided, the``polling`` parameter specified
230230 during construction of this future (the ``polling`` argument in the
231231 constructor) will be used instead. Note: since the ``timeout`` argument may
0 commit comments