Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-02-27 15:24:41 +0400
committernulltoken <emeric.fermas@gmail.com>2012-02-27 16:44:49 +0400
commitb690f448c5b640bdbfb8e661231512c0cf3c3563 (patch)
treea30c639ee85211f26c3eae0c967e82ddcbb88718 /LibGit2Sharp
parent5e546fc8715b197343a7683b5fd76dfa6f762bba (diff)
Add some missing xml documentation
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/FileStatus.cs5
-rw-r--r--LibGit2Sharp/GitSortOptions.cs3
2 files changed, 7 insertions, 1 deletions
diff --git a/LibGit2Sharp/FileStatus.cs b/LibGit2Sharp/FileStatus.cs
index 56557611..4afc5d0c 100644
--- a/LibGit2Sharp/FileStatus.cs
+++ b/LibGit2Sharp/FileStatus.cs
@@ -2,6 +2,9 @@
namespace LibGit2Sharp
{
+ /// <summary>
+ /// Calculated status of a filepath in the working directory considering the current <see cref = "Repository.Index" /> and the <see cref="Repository.Head" />.
+ /// </summary>
[Flags]
public enum FileStatus
{
@@ -46,7 +49,7 @@ namespace LibGit2Sharp
Missing = (1 << 5), /* GIT_STATUS_WT_DELETED */
/// <summary>
- /// The file is <see cref="Untracked"/> but its name and/or path macthes an exclude pattern in a <c>gitignore</c> file.
+ /// The file is <see cref="Untracked"/> but its name and/or path matches an exclude pattern in a <c>gitignore</c> file.
/// </summary>
Ignored = (1 << 6), /* GIT_STATUS_IGNORED */
}
diff --git a/LibGit2Sharp/GitSortOptions.cs b/LibGit2Sharp/GitSortOptions.cs
index 86d40dfb..d56f9795 100644
--- a/LibGit2Sharp/GitSortOptions.cs
+++ b/LibGit2Sharp/GitSortOptions.cs
@@ -2,6 +2,9 @@
namespace LibGit2Sharp
{
+ /// <summary>
+ /// Determines the sorting strategy when iterating through the content of the repository
+ /// </summary>
[Flags]
public enum GitSortOptions
{