Skip to content

Commit fb6b702

Browse files
authored
docs(bigtable): remove missing argument from instance declaration (#47)
Fixes #42 🦕
1 parent 9d275ba commit fb6b702

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

packages/google-cloud-bigtable/docs/instance-api.rst

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,7 @@ To create an :class:`Instance <google.cloud.bigtable.instance.Instance>` object:
2222

2323
.. code:: python
2424
25-
instance = client.instance(instance_id, location_id,
26-
display_name=display_name)
27-
28-
- ``location_id`` is the ID of the location in which the instance's cluster
29-
will be hosted, e.g. ``'us-central1-c'``. ``location_id`` is required for
30-
instances which do not already exist.
25+
instance = client.instance(instance_id, display_name=display_name)
3126
3227
- ``display_name`` is optional. When not provided, ``display_name`` defaults
3328
to the ``instance_id`` value.

0 commit comments

Comments
 (0)