mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 12:26:18 +00:00
tidying up some docs in the Extensions namespace
This commit is contained in:
@@ -6,9 +6,16 @@ using System.Linq;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the summary of lines added and deleted
|
||||
/// </summary>
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class CodeFrequency
|
||||
{
|
||||
/// <summary>
|
||||
/// Construct an instance of CodeFrequency
|
||||
/// </summary>
|
||||
/// <param name="rawFrequencies">Raw data </param>
|
||||
public CodeFrequency(IEnumerable<IList<long>> rawFrequencies)
|
||||
{
|
||||
Ensure.ArgumentNotNull(rawFrequencies, "rawFrequencies");
|
||||
|
||||
Reference in New Issue
Block a user