Skip to content

Commit bc6db77

Browse files
authored
docs: use correct storage type constant in docstrings (#110)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigtable/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
1 parent e55ca07 commit bc6db77

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

google/cloud/bigtable/cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Cluster(object):
5959
Possible values are represented by the
6060
following constants:
6161
:data:`google.cloud.bigtable.enums.StorageType.SSD`.
62-
:data:`google.cloud.bigtable.enums.StorageType.SHD`,
62+
:data:`google.cloud.bigtable.enums.StorageType.HDD`,
6363
Defaults to
6464
:data:`google.cloud.bigtable.enums.StorageType.UNSPECIFIED`.
6565

google/cloud/bigtable/instance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def create(
268268
Possible values are represented
269269
by the following constants:
270270
:data:`google.cloud.bigtable.enums.StorageType.SSD`.
271-
:data:`google.cloud.bigtable.enums.StorageType.SHD`,
271+
:data:`google.cloud.bigtable.enums.StorageType.HDD`,
272272
Defaults to
273273
:data:`google.cloud.bigtable.enums.StorageType.UNSPECIFIED`.
274274
@@ -564,7 +564,7 @@ def cluster(
564564
Possible values are represented by the
565565
following constants:
566566
:data:`google.cloud.bigtable.enums.StorageType.SSD`.
567-
:data:`google.cloud.bigtable.enums.StorageType.SHD`,
567+
:data:`google.cloud.bigtable.enums.StorageType.HDD`,
568568
Defaults to
569569
:data:`google.cloud.bigtable.enums.StorageType.UNSPECIFIED`.
570570

0 commit comments

Comments
 (0)