@@ -92,8 +92,8 @@ class _ACLEntity(object):
9292 :param entity_type: The type of entity (ie, 'group' or 'user').
9393
9494 :type identifier: str
95- :param identifier: The ID or e-mail of the entity. For the special
96- entity types (like 'allUsers') this is optional .
95+ :param identifier: (Optional) The ID or e-mail of the entity. For the special
96+ entity types (like 'allUsers').
9797 """
9898
9999 READER_ROLE = "READER"
@@ -212,7 +212,7 @@ def _ensure_loaded(self, timeout=_DEFAULT_TIMEOUT):
212212 """Load if not already loaded.
213213
214214 :type timeout: float or tuple
215- :param timeout: (optional ) The amount of time, in seconds, to wait
215+ :param timeout: (Optional ) The amount of time, in seconds, to wait
216216 for the server response.
217217
218218 Can also be passed as a tuple (connect_timeout, read_timeout).
@@ -432,10 +432,10 @@ def reload(self, client=None, timeout=_DEFAULT_TIMEOUT):
432432
433433 :type client: :class:`~google.cloud.storage.client.Client` or
434434 ``NoneType``
435- :param client: Optional. The client to use. If not passed, falls back
435+ :param client: ( Optional) The client to use. If not passed, falls back
436436 to the ``client`` stored on the ACL's parent.
437437 :type timeout: float or tuple
438- :param timeout: (optional ) The amount of time, in seconds, to wait
438+ :param timeout: (Optional ) The amount of time, in seconds, to wait
439439 for the server response.
440440
441441 Can also be passed as a tuple (connect_timeout, read_timeout).
@@ -465,16 +465,15 @@ def _save(self, acl, predefined, client, timeout=_DEFAULT_TIMEOUT):
465465 current entries.
466466
467467 :type predefined: str
468- :param predefined:
469- (Optional) An identifier for a predefined ACL. Must be one of the
468+ :param predefined: An identifier for a predefined ACL. Must be one of the
470469 keys in :attr:`PREDEFINED_JSON_ACLS` If passed, `acl` must be None.
471470
472471 :type client: :class:`~google.cloud.storage.client.Client` or
473472 ``NoneType``
474- :param client: Optional. The client to use. If not passed, falls back
473+ :param client: ( Optional) The client to use. If not passed, falls back
475474 to the ``client`` stored on the ACL's parent.
476475 :type timeout: float or tuple
477- :param timeout: (optional ) The amount of time, in seconds, to wait
476+ :param timeout: (Optional ) The amount of time, in seconds, to wait
478477 for the server response.
479478
480479 Can also be passed as a tuple (connect_timeout, read_timeout).
@@ -514,10 +513,10 @@ def save(self, acl=None, client=None, timeout=_DEFAULT_TIMEOUT):
514513
515514 :type client: :class:`~google.cloud.storage.client.Client` or
516515 ``NoneType``
517- :param client: Optional. The client to use. If not passed, falls back
516+ :param client: ( Optional) The client to use. If not passed, falls back
518517 to the ``client`` stored on the ACL's parent.
519518 :type timeout: float or tuple
520- :param timeout: (optional ) The amount of time, in seconds, to wait
519+ :param timeout: (Optional ) The amount of time, in seconds, to wait
521520 for the server response.
522521
523522 Can also be passed as a tuple (connect_timeout, read_timeout).
@@ -546,10 +545,10 @@ def save_predefined(self, predefined, client=None, timeout=_DEFAULT_TIMEOUT):
546545
547546 :type client: :class:`~google.cloud.storage.client.Client` or
548547 ``NoneType``
549- :param client: Optional. The client to use. If not passed, falls back
548+ :param client: ( Optional) The client to use. If not passed, falls back
550549 to the ``client`` stored on the ACL's parent.
551550 :type timeout: float or tuple
552- :param timeout: (optional ) The amount of time, in seconds, to wait
551+ :param timeout: (Optional ) The amount of time, in seconds, to wait
553552 for the server response.
554553
555554 Can also be passed as a tuple (connect_timeout, read_timeout).
@@ -570,10 +569,10 @@ def clear(self, client=None, timeout=_DEFAULT_TIMEOUT):
570569
571570 :type client: :class:`~google.cloud.storage.client.Client` or
572571 ``NoneType``
573- :param client: Optional. The client to use. If not passed, falls back
572+ :param client: ( Optional) The client to use. If not passed, falls back
574573 to the ``client`` stored on the ACL's parent.
575574 :type timeout: float or tuple
576- :param timeout: (optional ) The amount of time, in seconds, to wait
575+ :param timeout: (Optional ) The amount of time, in seconds, to wait
577576 for the server response.
578577
579578 Can also be passed as a tuple (connect_timeout, read_timeout).
0 commit comments