Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-02-27 15:05:58 +0400
committernulltoken <emeric.fermas@gmail.com>2012-02-27 15:05:58 +0400
commitb8f4640f213b4ca3f079e43a71a5bd188f75f0da (patch)
tree506d96b184b4fc4e3a5c3d6cad84ef2982a20b4c /LibGit2Sharp
parentc37d818160608e337a7acaf7fbe11a55f124b8e8 (diff)
Fix some ambiguous references in the xml documentation
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/Repository.cs3
-rw-r--r--LibGit2Sharp/RepositoryExtensions.cs6
2 files changed, 4 insertions, 5 deletions
diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs
index 8d433d81..92f5b240 100644
--- a/LibGit2Sharp/Repository.cs
+++ b/LibGit2Sharp/Repository.cs
@@ -1,5 +1,4 @@
using System;
-using System.IO;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Compat;
@@ -172,7 +171,7 @@ namespace LibGit2Sharp
/// </summary>
/// <param name = "path">The path to the working folder when initializing a standard ".git" repository. Otherwise, when initializing a bare repository, the path to the expected location of this later.</param>
/// <param name = "isBare">true to initialize a bare repository. False otherwise, to initialize a standard ".git" repository.</param>
- /// <returns> a new instance of the <see cref = "Repository" /> class. The client code is responsible for calling <see cref="Dispose"/> on this instance.</returns>
+ /// <returns> a new instance of the <see cref = "Repository" /> class. The client code is responsible for calling <see cref="Dispose()"/> on this instance.</returns>
public static Repository Init(string path, bool isBare = false)
{
Ensure.ArgumentNotNullOrEmptyString(path, "path");
diff --git a/LibGit2Sharp/RepositoryExtensions.cs b/LibGit2Sharp/RepositoryExtensions.cs
index b061d19d..a9d44489 100644
--- a/LibGit2Sharp/RepositoryExtensions.cs
+++ b/LibGit2Sharp/RepositoryExtensions.cs
@@ -104,7 +104,7 @@ namespace LibGit2Sharp
/// </summary>
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
/// <param name = "message">The description of why a change was made to the repository.</param>
- /// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
+ /// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
/// <returns>The generated <see cref = "LibGit2Sharp.Commit" />.</returns>
public static Commit Commit(this Repository repository, string message, bool amendPreviousCommit = false)
{
@@ -120,7 +120,7 @@ namespace LibGit2Sharp
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
/// <param name = "author">The <see cref = "Signature" /> of who made the change.</param>
/// <param name = "message">The description of why a change was made to the repository.</param>
- /// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
+ /// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
/// <returns>The generated <see cref = "LibGit2Sharp.Commit" />.</returns>
public static Commit Commit(this Repository repository, string message, Signature author, bool amendPreviousCommit = false)
{
@@ -136,7 +136,7 @@ namespace LibGit2Sharp
/// <param name = "author">The <see cref = "Signature" /> of who made the change.</param>
/// <param name = "committer">The <see cref = "Signature" /> of who added the change to the repository.</param>
/// <param name = "message">The description of why a change was made to the repository.</param>
- /// <param name="amendPreviousCommit">True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
+ /// <param name="amendPreviousCommit">True to amend the current <see cref="LibGit2Sharp.Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.</param>
/// <returns>The generated <see cref = "LibGit2Sharp.Commit" />.</returns>
public static Commit Commit(this Repository repository, string message, Signature author, Signature committer, bool amendPreviousCommit = false)
{