We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a pluralized interface that we shouldn't really have:
https://developer.github.com/v3/repos/commits/
var commit = await github.Repository.Commits.Get("octokit", "octokit.net", "master");
We should mark this property as obsolete and introduce a new property which is singular:
var commit = await github.Repository.Commit.Get("octokit", "octokit.net", "master");
The text was updated successfully, but these errors were encountered:
🎋
Sorry, something went wrong.
IRepositoriesClient.Commits -> IRepositoriesClient.Commit
8b957ff
Fixes octokit#1035
b191736
No branches or pull requests
This is a pluralized interface that we shouldn't really have:
https://developer.github.com/v3/repos/commits/
We should mark this property as obsolete and introduce a new property which is singular:
The text was updated successfully, but these errors were encountered: