diff --git a/packages/google-cloud-dns/README.md b/packages/google-cloud-dns/README.md index 4ceb6aff1a3..b52099ca5ab 100644 --- a/packages/google-cloud-dns/README.md +++ b/packages/google-cloud-dns/README.md @@ -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(); ```