Skip to content

Commit

Permalink
Fix documentation for the list available assignees endpoint (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFradet authored Oct 18, 2018
1 parent 87b1392 commit 81f36cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/tut/issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
[user-scala]: https://github.com/47deg/github4s/blob/master/github4s/shared/src/main/scala/github4s/free/domain/User.scala

0 comments on commit 81f36cb

Please sign in to comment.