Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Bigtable docs references to "instances". #1848

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/bigtable/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ var Instance = require('./instance.js');
* //-
*
* //-
* // <h3>Creating a Compute Instance</h3>
* // <h3>Creating a Bigtable Instance and Cluster</h3>
* //
* // Before you create your table, you first need to create a Compute Instance
* // for the table to be served from.
* // Before you create your table, you first need to create a Bigtable Instance
* // and cluster for the table to be served from.
* //-
* var callback = function(err, instance, operation) {
* operation
Expand All @@ -99,7 +99,7 @@ var Instance = require('./instance.js');
* //-
* // This can also be done from either the Google Cloud Platform Console or the
* // `gcloud` cli tool. Please refer to the
* // <a href="https://cloud.google.com/bigtable/docs/creating-compute-instance">
* // <a href="https://cloud.google.com/bigtable/docs/creating-instance">
* // official Bigtable documentation</a> for more information.
* //-
*
Expand Down