diff --git a/Octokit/Models/Response/GitHubCommit.cs b/Octokit/Models/Response/GitHubCommit.cs
index 3f3c679d..facc929b 100644
--- a/Octokit/Models/Response/GitHubCommit.cs
+++ b/Octokit/Models/Response/GitHubCommit.cs
@@ -24,12 +24,22 @@ namespace Octokit
Files = files;
}
+ ///
+ /// Gets the GitHub account information for the commit author. It attempts to match the email
+ /// address used in the commit with the email addresses registered with the GitHub account.
+ /// If no account corresponds to the commit email, then this property is null.
+ ///
public Author Author { get; protected set; }
public string CommentsUrl { get; protected set; }
public Commit Commit { get; protected set; }
+ ///
+ /// Gets the GitHub account information for the commit committer. It attempts to match the email
+ /// address used in the commit with the email addresses registered with the GitHub account.
+ /// If no account corresponds to the commit email, then this property is null.
+ ///
public Author Committer { get; protected set; }
public string HtmlUrl { get; protected set; }