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-04-28 06:35:49 +0400
committernulltoken <emeric.fermas@gmail.com>2012-04-28 06:35:49 +0400
commit505512e338ebac5897ba27ec852dbceaca385939 (patch)
treee900e5be1268b5132a66b57dc26f59bf05b87997
parent1658e84d428824aae8f62e8be5e70c4664e2663d (diff)
Fix some documentation
-rw-r--r--LibGit2Sharp/Branch.cs2
-rw-r--r--LibGit2Sharp/Repository.cs3
2 files changed, 4 insertions, 1 deletions
diff --git a/LibGit2Sharp/Branch.cs b/LibGit2Sharp/Branch.cs
index d3e591a7..0097cd56 100644
--- a/LibGit2Sharp/Branch.cs
+++ b/LibGit2Sharp/Branch.cs
@@ -115,7 +115,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the commit id that this branch points to.
+ /// Gets the <see cref="Commit"/> that this branch points to.
/// </summary>
public Commit Tip
{
diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs
index 1eccf449..850cc03c 100644
--- a/LibGit2Sharp/Repository.cs
+++ b/LibGit2Sharp/Repository.cs
@@ -61,6 +61,9 @@ namespace LibGit2Sharp
odb = new Lazy<ObjectDatabase>(() => new ObjectDatabase(this));
}
+ /// <summary>
+ /// Takes care of releasing all non-managed remaining resources.
+ /// </summary>
~Repository()
{
Dispose(false);