From 991c4cb15561addbd86aa2f4d4473e90da3d842f Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Thu, 3 Dec 2020 08:48:04 -0800 Subject: [PATCH] fix(README): replace `:param` notation with `{param}` `:param` is still supported, but deprecated --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f600985..b70a278 100644 --- a/README.md +++ b/README.md @@ -318,7 +318,7 @@ const auth = createOAuthAppAuth({ const appAuthentication = await auth({ type: "oauth-app", - url: "/orgs/:org/repos", + url: "/orgs/{org}/repos", }); const tokenAuthentication = await auth({ type: "token" }); ```