Skip to content

Commit 95cdf19

Browse files
authored
chore: remove snippet leading whitespace (#310)
1 parent c03eff6 commit 95cdf19

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

packages/google-container/README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -58,24 +58,24 @@ npm install @google-cloud/container
5858
### Using the client library
5959

6060
```javascript
61-
const container = require('@google-cloud/container');
62-
63-
// Create the Cluster Manager Client
64-
const client = new container.v1.ClusterManagerClient();
65-
66-
async function quickstart() {
67-
const zone = 'us-central1-a';
68-
const projectId = await client.getProjectId();
69-
const request = {
70-
projectId: projectId,
71-
zone: zone,
72-
};
73-
74-
const [response] = await client.listClusters(request);
75-
console.log('Clusters:');
76-
console.log(response);
77-
}
78-
quickstart();
61+
const container = require('@google-cloud/container');
62+
63+
// Create the Cluster Manager Client
64+
const client = new container.v1.ClusterManagerClient();
65+
66+
async function quickstart() {
67+
const zone = 'us-central1-a';
68+
const projectId = await client.getProjectId();
69+
const request = {
70+
projectId: projectId,
71+
zone: zone,
72+
};
73+
74+
const [response] = await client.listClusters(request);
75+
console.log('Clusters:');
76+
console.log(response);
77+
}
78+
quickstart();
7979

8080
```
8181

0 commit comments

Comments
 (0)