You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: LibGit2Sharp/IRepository.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -122,15 +122,15 @@ public interface IRepository : IDisposable
122
122
GitObjectLookup(stringobjectish);
123
123
124
124
/// <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.
126
126
/// </summary>
127
127
/// <param name = "id">The id to lookup.</param>
128
128
/// <param name = "type">The kind of GitObject being looked up</param>
129
129
/// <returns>The <see cref = "GitObject" /> or null if it was not found.</returns>
130
130
GitObjectLookup(ObjectIdid,ObjectTypetype);
131
131
132
132
/// <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.
134
134
/// </summary>
135
135
/// <param name = "objectish">A revparse spec for the object to lookup.</param>
136
136
/// <param name = "type">The kind of <see cref = "GitObject" /> being looked up</param>
Copy file name to clipboardExpand all lines: LibGit2Sharp/Repository.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -406,7 +406,7 @@ public GitObject Lookup(string objectish)
406
406
}
407
407
408
408
/// <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.
410
410
/// </summary>
411
411
/// <param name = "id">The id to lookup.</param>
412
412
/// <param name = "type">The kind of GitObject being looked up</param>
@@ -417,7 +417,7 @@ public GitObject Lookup(ObjectId id, ObjectType type)
417
417
}
418
418
419
419
/// <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.
421
421
/// </summary>
422
422
/// <param name = "objectish">A revparse spec for the object to lookup.</param>
423
423
/// <param name = "type">The kind of <see cref = "GitObject" /> being looked up</param>
0 commit comments