This repository was archived by the owner on Feb 3, 2023. It is now read-only.
File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3216,7 +3216,7 @@ private enum LibGitOption
3216
3216
/// </summary>
3217
3217
/// <param name="level">The level (global/system/XDG) of the config.</param>
3218
3218
/// <returns>
3219
- /// The paths delimited by 'GIT_PATH_LIST_SEPARATOR' (<see cref="GlobalSettings.PathListSeparator"/>) .
3219
+ /// The paths delimited by 'GIT_PATH_LIST_SEPARATOR'.
3220
3220
/// </returns>
3221
3221
public static string git_libgit2_opts_get_search_path ( ConfigurationLevel level )
3222
3222
{
@@ -3238,7 +3238,7 @@ public static string git_libgit2_opts_get_search_path(ConfigurationLevel level)
3238
3238
/// </summary>
3239
3239
/// <param name="level">The level (global/system/XDG) of the config.</param>
3240
3240
/// <param name="path">
3241
- /// A string of paths delimited by 'GIT_PATH_LIST_SEPARATOR' (<see cref="GlobalSettings.PathListSeparator"/>) .
3241
+ /// A string of paths delimited by 'GIT_PATH_LIST_SEPARATOR'.
3242
3242
/// Pass null to reset the search path to the default.
3243
3243
/// </param>
3244
3244
public static void git_libgit2_opts_set_search_path ( ConfigurationLevel level , string path )
Original file line number Diff line number Diff line change 2
2
using System . Collections . Generic ;
3
3
using System . IO ;
4
4
using System . Reflection ;
5
- using System . Collections . Generic ;
6
5
using LibGit2Sharp . Core ;
7
6
8
7
namespace LibGit2Sharp
Original file line number Diff line number Diff line change 1
1
namespace LibGit2Sharp
2
2
{
3
+ /// <summary>
4
+ /// Marker interface to identify Diff results.
5
+ /// </summary>
3
6
public interface IDiffResult
4
7
{ }
5
8
}
You can’t perform that action at this time.
0 commit comments