Skip to content

Commit

Permalink
docs: fixes small typo (#553)
Browse files Browse the repository at this point in the history
* docs: Fixes small typo

* docs: Add missing gce_startup_script end comment

* lint fix

* copyright fix

Co-authored-by: Takashi Matsuo <tmatsuo@google.com>
  • Loading branch information
haraldreingruber and Takashi Matsuo authored May 19, 2021
1 parent a867576 commit 10ea0b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
15 changes: 6 additions & 9 deletions packages/google-cloud-compute/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2404,9 +2404,8 @@ Compute.prototype.getDisksStream = paginator.streamify('getDisks');
* });
*/

Compute.prototype.getInstanceGroupsStream = paginator.streamify(
'getInstanceGroups'
);
Compute.prototype.getInstanceGroupsStream =
paginator.streamify('getInstanceGroups');

/**
* Get a list of {@link Firewall} objects as a readable object stream.
Expand Down Expand Up @@ -2465,9 +2464,8 @@ Compute.prototype.getFirewallsStream = paginator.streamify('getFirewalls');
* this.end();
* });
*/
Compute.prototype.getHealthChecksStream = paginator.streamify(
'getHealthChecks'
);
Compute.prototype.getHealthChecksStream =
paginator.streamify('getHealthChecks');

/**
* Get a list of {@link Image} objects as a readable object stream.
Expand Down Expand Up @@ -2526,9 +2524,8 @@ Compute.prototype.getImagesStream = paginator.streamify('getImages');
* this.end();
* });
*/
Compute.prototype.getMachineTypesStream = paginator.streamify(
'getMachineTypes'
);
Compute.prototype.getMachineTypesStream =
paginator.streamify('getMachineTypes');

/**
* Get a list of {@link Network} objects as a readable object stream.
Expand Down
5 changes: 2 additions & 3 deletions packages/google-cloud-compute/src/zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -1540,9 +1540,8 @@ Zone.prototype.getDisksStream = paginator.streamify('getDisks');
* this.end();
* });
*/
Zone.prototype.getInstanceGroupsStream = paginator.streamify(
'getInstanceGroups'
);
Zone.prototype.getInstanceGroupsStream =
paginator.streamify('getInstanceGroups');

/**
* Get a list of {@link MachineType} objects for this zone as a
Expand Down

0 comments on commit 10ea0b2

Please sign in to comment.