mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 10:25:36 +00:00
Add a bunch of doc comments
We get a lot of build output because of missing XML comments that we
ignore. I'd like to stop ignoring them. To do that, we need to doc the
💩 out of everything.
This commit is contained in:
@@ -1,10 +1,28 @@
|
||||
namespace Octokit
|
||||
{
|
||||
/// <summary>
|
||||
/// Used to qualify a serch term.
|
||||
/// </summary>
|
||||
public enum SearchQualifierOperator
|
||||
{
|
||||
GreaterThan, // >
|
||||
LessThan, // <
|
||||
LessThanOrEqualTo, // <=
|
||||
GreaterThanOrEqualTo// >=
|
||||
/// <summary>
|
||||
/// Greater than ">"
|
||||
/// </summary>
|
||||
GreaterThan,
|
||||
|
||||
/// <summary>
|
||||
/// Less than "<"
|
||||
/// </summary>
|
||||
LessThan,
|
||||
|
||||
/// <summary>
|
||||
/// Less than or equal to. "<="
|
||||
/// </summary>
|
||||
LessThanOrEqualTo,
|
||||
|
||||
/// <summary>
|
||||
/// Greater than or equal to. ">="
|
||||
/// </summary>
|
||||
GreaterThanOrEqualTo
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user