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

Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Commit 9d57983

Browse files
committed
Fix xml doc ambiguous references
1 parent c7e11bb commit 9d57983

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

LibGit2Sharp/IRepository.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ public interface IRepository : IDisposable
101101
Branch Checkout(string committishOrBranchSpec, CheckoutModifiers checkoutModifiers, CheckoutProgressHandler onCheckoutProgress, CheckoutNotificationOptions checkoutNotificationOptions, Signature signature = null);
102102

103103
/// <summary>
104-
/// Checkout the specified <see cref="Commit"/>.
104+
/// Checkout the specified <see cref="LibGit2Sharp.Commit"/>.
105105
/// <para>
106106
/// Will detach the HEAD and make it point to this commit sha.
107107
/// </para>
108108
/// </summary>
109-
/// <param name="commit">The <see cref="Commit"/> to check out.</param>
109+
/// <param name="commit">The <see cref="LibGit2Sharp.Commit"/> to check out.</param>
110110
/// <param name="checkoutModifiers"><see cref="CheckoutModifiers"/> controlling checkout behavior.</param>
111111
/// <param name="onCheckoutProgress"><see cref="CheckoutProgressHandler"/> that checkout progress is reported through.</param>
112112
/// <param name="checkoutNotificationOptions"><see cref="CheckoutNotificationOptions"/> to manage checkout notifications.</param>
@@ -156,27 +156,27 @@ public interface IRepository : IDisposable
156156
GitObject Lookup(string objectish, ObjectType type);
157157

158158
/// <summary>
159-
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="Commit"/> into the repository.
159+
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="LibGit2Sharp.Commit"/> into the repository.
160160
/// The tip of the <see cref="Repository.Head"/> will be used as the parent of this new Commit.
161161
/// Once the commit is created, the <see cref="Repository.Head"/> will move forward to point at it.
162162
/// </summary>
163163
/// <param name="message">The description of why a change was made to the repository.</param>
164164
/// <param name="author">The <see cref="Signature"/> of who made the change.</param>
165165
/// <param name="committer">The <see cref="Signature"/> of who added the change to the repository.</param>
166166
/// <param name="options">The <see cref="CommitOptions"/> that specify the commit behavior.</param>
167-
/// <returns>The generated <see cref="Commit"/>.</returns>
167+
/// <returns>The generated <see cref="LibGit2Sharp.Commit"/>.</returns>
168168
Commit Commit(string message, Signature author, Signature committer, CommitOptions options = null);
169169

170170
/// <summary>
171-
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="Commit"/> into the repository.
171+
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="LibGit2Sharp.Commit"/> into the repository.
172172
/// The tip of the <see cref="Repository.Head"/> will be used as the parent of this new Commit.
173173
/// Once the commit is created, the <see cref="Repository.Head"/> will move forward to point at it.
174174
/// </summary>
175175
/// <param name="message">The description of why a change was made to the repository.</param>
176176
/// <param name="author">The <see cref="Signature"/> of who made the change.</param>
177177
/// <param name="committer">The <see cref="Signature"/> of who added the change to the repository.</param>
178-
/// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
179-
/// <returns>The generated <see cref="Commit"/>.</returns>
178+
/// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
179+
/// <returns>The generated <see cref="LibGit2Sharp.Commit"/>.</returns>
180180
[Obsolete("This method will be removed in the next release. Please use a Commit overload that accepts a CommitOptions instead.")]
181181
Commit Commit(string message, Signature author, Signature committer, bool amendPreviousCommit);
182182

LibGit2Sharp/Repository.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -886,15 +886,15 @@ public void Reset(Commit commit, IEnumerable<string> paths = null, ExplicitPaths
886886
}
887887

888888
/// <summary>
889-
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="Commit"/> into the repository.
889+
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="LibGit2Sharp.Commit"/> into the repository.
890890
/// The tip of the <see cref="Repository.Head"/> will be used as the parent of this new Commit.
891891
/// Once the commit is created, the <see cref="Repository.Head"/> will move forward to point at it.
892892
/// </summary>
893893
/// <param name="message">The description of why a change was made to the repository.</param>
894894
/// <param name="author">The <see cref="Signature"/> of who made the change.</param>
895895
/// <param name="committer">The <see cref="Signature"/> of who added the change to the repository.</param>
896896
/// <param name="options">The <see cref="CommitOptions"/> that specify the commit behavior.</param>
897-
/// <returns>The generated <see cref="Commit"/>.</returns>
897+
/// <returns>The generated <see cref="LibGit2Sharp.Commit"/>.</returns>
898898
public Commit Commit(string message, Signature author, Signature committer, CommitOptions options = null)
899899
{
900900
if (options == null)
@@ -945,15 +945,15 @@ public Commit Commit(string message, Signature author, Signature committer, Comm
945945
}
946946

947947
/// <summary>
948-
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="Commit"/> into the repository.
948+
/// Stores the content of the <see cref="Repository.Index"/> as a new <see cref="LibGit2Sharp.Commit"/> into the repository.
949949
/// The tip of the <see cref="Repository.Head"/> will be used as the parent of this new Commit.
950950
/// Once the commit is created, the <see cref="Repository.Head"/> will move forward to point at it.
951951
/// </summary>
952952
/// <param name="message">The description of why a change was made to the repository.</param>
953953
/// <param name="author">The <see cref="Signature"/> of who made the change.</param>
954954
/// <param name="committer">The <see cref="Signature"/> of who added the change to the repository.</param>
955-
/// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
956-
/// <returns>The generated <see cref="Commit"/>.</returns>
955+
/// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
956+
/// <returns>The generated <see cref="LibGit2Sharp.Commit"/>.</returns>
957957
[Obsolete("This method will be removed in the next release. Please use a Commit overload that accepts a CommitOptions instead.")]
958958
public Commit Commit(string message, Signature author, Signature committer, bool amendPreviousCommit)
959959
{

0 commit comments

Comments
 (0)