From a9b06747b16f2d04be4e32c4604ed854b4359f9b Mon Sep 17 00:00:00 2001 From: Deniz Ozger Date: Wed, 16 May 2018 19:07:10 +0100 Subject: [PATCH] docs: Fix syntax error (#1174) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6118bc5c3f2..117c5b1ccb9 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ const plus = google.plus({ async function main() { const res = await plus.people.get({ userId: 'me' }); console.log(`Hello ${res.data.displayName}!`); -}); +}; main().catch(console.error); ```