From 789c50a748364dfe69f5c58d38af6fc3e2050332 Mon Sep 17 00:00:00 2001 From: Alvaro Bernal Date: Wed, 18 Sep 2019 21:12:08 +0100 Subject: [PATCH] Fix(docs): Incorrect method signature --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52148d17..acf7cb0b 100644 --- a/README.md +++ b/README.md @@ -346,7 +346,7 @@ const api = new Gitlab({ token: 'personaltoken', }); -api.Projects.create(projectId, { +api.Projects.create({ //options defined in the Gitlab API documentation }); ```