Skip to content

Commit

Permalink
fix(docs): fix variable name in README.md (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Laux authored and JustinBeckwith committed Sep 5, 2019
1 parent feeee50 commit d8c70b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ async function main() {
serviceAccountEmail: 'my-service-account@example.com'
});
const projectId = await auth.getProjectId();
const url = `https://dns.googleapis.com/dns/v1/projects/${project_id}`;
const url = `https://dns.googleapis.com/dns/v1/projects/${projectId}`;
const res = await client.request({url});
console.log(res.data);
}
Expand Down

0 comments on commit d8c70b9

Please sign in to comment.