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:
authorAlessandro Gentilini <alessandro.gentilini@gmail.com>2015-05-18 22:33:23 +0300
committerAlessandro Gentilini <alessandro.gentilini@gmail.com>2015-05-18 22:33:23 +0300
commit37cf8af91a1363f8bf53bb2eaea53e35db67525b (patch)
treefa30556eb4ba59e867707b446f8ed076668e4445
parente0bf814970249672bf91df48370e3c4840ab9908 (diff)
Fix a typo in a comment.
-rw-r--r--LibGit2Sharp/Repository.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs
index 5d08d133..247d67ed 100644
--- a/LibGit2Sharp/Repository.cs
+++ b/LibGit2Sharp/Repository.cs
@@ -1888,7 +1888,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Retrieves the state of a file in the working directory, comparing it against the staging area and the latest commmit.
+ /// Retrieves the state of a file in the working directory, comparing it against the staging area and the latest commit.
/// </summary>
/// <param name="filePath">The relative path within the working directory to the file.</param>
/// <returns>A <see cref="FileStatus"/> representing the state of the <paramref name="filePath"/> parameter.</returns>
@@ -1902,7 +1902,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commmit.
+ /// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commit.
/// </summary>
/// <param name="options">If set, the options that control the status investigation.</param>
/// <returns>A <see cref="RepositoryStatus"/> holding the state of all the files.</returns>