Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5c26149

Browse files
committed
Fix documentation
1 parent efb3ecc commit 5c26149

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

LibGit2Sharp/IRepository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,15 @@ public interface IRepository : IDisposable
122122
GitObject Lookup(string objectish);
123123

124124
/// <summary>
125-
/// Try to lookup an object by its <see cref = "ObjectId" /> and <see cref = "GitObjectType" />. If no matching object is found, null will be returned.
125+
/// Try to lookup an object by its <see cref = "ObjectId" /> and <see cref = "ObjectType" />. If no matching object is found, null will be returned.
126126
/// </summary>
127127
/// <param name = "id">The id to lookup.</param>
128128
/// <param name = "type">The kind of GitObject being looked up</param>
129129
/// <returns>The <see cref = "GitObject" /> or null if it was not found.</returns>
130130
GitObject Lookup(ObjectId id, ObjectType type);
131131

132132
/// <summary>
133-
/// 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.
133+
/// 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.
134134
/// </summary>
135135
/// <param name = "objectish">A revparse spec for the object to lookup.</param>
136136
/// <param name = "type">The kind of <see cref = "GitObject" /> being looked up</param>

LibGit2Sharp/Repository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ public GitObject Lookup(string objectish)
406406
}
407407

408408
/// <summary>
409-
/// Try to lookup an object by its <see cref = "ObjectId" /> and <see cref = "GitObjectType" />. If no matching object is found, null will be returned.
409+
/// Try to lookup an object by its <see cref = "ObjectId" /> and <see cref = "ObjectType" />. If no matching object is found, null will be returned.
410410
/// </summary>
411411
/// <param name = "id">The id to lookup.</param>
412412
/// <param name = "type">The kind of GitObject being looked up</param>
@@ -417,7 +417,7 @@ public GitObject Lookup(ObjectId id, ObjectType type)
417417
}
418418

419419
/// <summary>
420-
/// 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.
420+
/// 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.
421421
/// </summary>
422422
/// <param name = "objectish">A revparse spec for the object to lookup.</param>
423423
/// <param name = "type">The kind of <see cref = "GitObject" /> being looked up</param>

0 commit comments

Comments
 (0)