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-05-20 13:49:20 +0400
committernulltoken <emeric.fermas@gmail.com>2012-05-20 13:50:46 +0400
commit69207a6bb357cc2e801361bcbeffda5803cfa330 (patch)
tree0e1ad9e7c977dc8f1a0c200580851a4c516d2a78
parenta23d735babc60584e611627743716b3bb4708616 (diff)
Improve Filter documentation
-rw-r--r--LibGit2Sharp/Filter.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/LibGit2Sharp/Filter.cs b/LibGit2Sharp/Filter.cs
index 77ef5d90..5baa2d73 100644
--- a/LibGit2Sharp/Filter.cs
+++ b/LibGit2Sharp/Filter.cs
@@ -26,8 +26,8 @@
/// A pointer to a commit object or a list of pointers to consider as starting points.
/// <para>
/// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
- /// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />
- /// or a <see cref = "TagAnnotation" /> or even a mixed collection of all of the above.
+ /// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />,
+ /// a <see cref = "TagAnnotation" />, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
/// By default, the <see cref = "Repository.Head" /> will be used as boundary.
/// </para>
/// </summary>
@@ -37,8 +37,8 @@
/// A pointer to a commit object or a list of pointers which will be excluded (along with ancestors) from the enumeration.
/// <para>
/// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
- /// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />
- /// or a <see cref = "TagAnnotation" /> or even a mixed collection of all of the above.
+ /// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />,
+ /// a <see cref = "TagAnnotation" />, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
/// </para>
/// </summary>
public object Until { get; set; }