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>2013-05-04 01:01:06 +0400
committernulltoken <emeric.fermas@gmail.com>2013-05-04 01:03:49 +0400
commit5c26149fd17822e777699e982eaa5ae095ea1929 (patch)
treeb7deb9112a64b6be3b1052b6c7e7051e485c43b6 /LibGit2Sharp/IRepository.cs
parentefb3ecc3545706c533511c1f875836d2a7a0e820 (diff)
Fix documentation
Diffstat (limited to 'LibGit2Sharp/IRepository.cs')
-rw-r--r--LibGit2Sharp/IRepository.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/IRepository.cs b/LibGit2Sharp/IRepository.cs
index 0da38104..7065b261 100644
--- a/LibGit2Sharp/IRepository.cs
+++ b/LibGit2Sharp/IRepository.cs
@@ -122,7 +122,7 @@ namespace LibGit2Sharp
GitObject Lookup(string objectish);
/// <summary>
- /// Try to lookup an object by its <see cref = "ObjectId" /> and <see cref = "GitObjectType" />. If no matching object is found, null will be returned.
+ /// Try to lookup an object by its <see cref = "ObjectId" /> and <see cref = "ObjectType" />. If no matching object is found, null will be returned.
/// </summary>
/// <param name = "id">The id to lookup.</param>
/// <param name = "type">The kind of GitObject being looked up</param>
@@ -130,7 +130,7 @@ namespace LibGit2Sharp
GitObject Lookup(ObjectId id, ObjectType type);
/// <summary>
- /// Try to lookup an object by its sha or a reference canonical name and <see cref = "GitObjectType" />. If no matching object is found, null will be returned.
+ /// Try to lookup an object by its sha or a reference canonical name and <see cref = "ObjectType" />. If no matching object is found, null will be returned.
/// </summary>
/// <param name = "objectish">A revparse spec for the object to lookup.</param>
/// <param name = "type">The kind of <see cref = "GitObject" /> being looked up</param>