From 899140fcc8186c97f656dd713c2753a0d4896556 Mon Sep 17 00:00:00 2001 From: Scott Davis Date: Fri, 23 Oct 2020 10:03:04 -0600 Subject: [PATCH] docs: cli.url does not return a promise --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 752b6234..bbbf207d 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ await cli.anykey() Create a hyperlink (if supported in the terminal) ```typescript -await cli.url('sometext', 'https://google.com') +cli.url('sometext', 'https://google.com') // shows sometext as a hyperlink in supported terminals // shows https://google.com in unsupported terminals ```