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:31:49 +0300
committerAlessandro Gentilini <alessandro.gentilini@gmail.com>2015-05-18 22:31:49 +0300
commite0bf814970249672bf91df48370e3c4840ab9908 (patch)
tree713e92ca1c787a3966a410228ef073150259e617
parentd86bada1dcacd30f4b09a639b2d9fa127e9f01f2 (diff)
Fix a typo in a comment.
-rw-r--r--LibGit2Sharp/IRepository.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/IRepository.cs b/LibGit2Sharp/IRepository.cs
index 4b0b56d8..391cce1e 100644
--- a/LibGit2Sharp/IRepository.cs
+++ b/LibGit2Sharp/IRepository.cs
@@ -361,14 +361,14 @@ namespace LibGit2Sharp
void Remove(IEnumerable<string> paths, bool removeFromWorkingDirectory, ExplicitPathsOptions explicitPathsOptions);
/// <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>
FileStatus RetrieveStatus(string filePath);
/// <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>