From 41d10f748a6ab865283d14c70bcd4d8c55f980c2 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Thu, 18 Oct 2018 15:08:05 +0100 Subject: [PATCH] Fix documentation for the list available assignees endpoint --- docs/src/main/tut/issue.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/tut/issue.md b/docs/src/main/tut/issue.md index 16a8658f8..204dcc04f 100644 --- a/docs/src/main/tut/issue.md +++ b/docs/src/main/tut/issue.md @@ -340,7 +340,7 @@ You can list available assignees for issues in repo with the following parameter To list available assignees: ```tut:silent -val assignees = Github(accessToken).issues.listAvailableAssignees("47deg", "github4s", 123) +val assignees = Github(accessToken).issues.listAvailableAssignees("47deg", "github4s") assignees.exec[cats.Id, HttpResponse[String]]() match { case Left(e) => println(s"Something went wrong: ${e.getMessage}") case Right(r) => println(r.result) @@ -356,4 +356,4 @@ As you can see, a few features of the issue endpoint are missing. As a result, if you'd like to see a feature supported, feel free to create an issue and/or a pull request! [issue-scala]: https://github.com/47deg/github4s/blob/master/github4s/shared/src/main/scala/github4s/free/domain/Issue.scala -[user-scala]: https://github.com/47deg/github4s/blob/master/github4s/shared/src/main/scala/github4s/free/domain/User.scala \ No newline at end of file +[user-scala]: https://github.com/47deg/github4s/blob/master/github4s/shared/src/main/scala/github4s/free/domain/User.scala