Skip to content

Commit

Permalink
chore: remove snippet leading whitespace (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 authored Mar 19, 2020
1 parent 2b2259e commit ed1837a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/google-cloud-dns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,19 @@ npm install @google-cloud/dns
### Using the client library

```javascript
// Imports the Google Cloud client library
const {DNS} = require('@google-cloud/dns');

// Creates a client
const dns = new DNS();

async function quickstart() {
// Lists all zones in the current project
const [zones] = await dns.getZones();
console.log('Zones:');
zones.forEach(zone => console.log(zone.name));
}
quickstart();
// Imports the Google Cloud client library
const {DNS} = require('@google-cloud/dns');

// Creates a client
const dns = new DNS();

async function quickstart() {
// Lists all zones in the current project
const [zones] = await dns.getZones();
console.log('Zones:');
zones.forEach(zone => console.log(zone.name));
}
quickstart();

```

Expand Down

0 comments on commit ed1837a

Please sign in to comment.