This repository was archived by the owner on Feb 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3216,7 +3216,7 @@ private enum LibGitOption
32163216 /// </summary>
32173217 /// <param name="level">The level (global/system/XDG) of the config.</param>
32183218 /// <returns>
3219- /// The paths delimited by 'GIT_PATH_LIST_SEPARATOR' (<see cref="GlobalSettings.PathListSeparator"/>) .
3219+ /// The paths delimited by 'GIT_PATH_LIST_SEPARATOR'.
32203220 /// </returns>
32213221 public static string git_libgit2_opts_get_search_path ( ConfigurationLevel level )
32223222 {
@@ -3238,7 +3238,7 @@ public static string git_libgit2_opts_get_search_path(ConfigurationLevel level)
32383238 /// </summary>
32393239 /// <param name="level">The level (global/system/XDG) of the config.</param>
32403240 /// <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'.
32423242 /// Pass null to reset the search path to the default.
32433243 /// </param>
32443244 public static void git_libgit2_opts_set_search_path ( ConfigurationLevel level , string path )
Original file line number Diff line number Diff line change 22using System . Collections . Generic ;
33using System . IO ;
44using System . Reflection ;
5- using System . Collections . Generic ;
65using LibGit2Sharp . Core ;
76
87namespace LibGit2Sharp
Original file line number Diff line number Diff line change 11namespace LibGit2Sharp
22{
3+ /// <summary>
4+ /// Marker interface to identify Diff results.
5+ /// </summary>
36 public interface IDiffResult
47 { }
58}
You can’t perform that action at this time.
0 commit comments