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>2015-05-19 10:27:05 +0300
committernulltoken <emeric.fermas@gmail.com>2015-05-19 10:27:05 +0300
commit4439cad8a28f39aa0bf6d63b684d7a437ba80f0a (patch)
treed9f334b01fb2092e58d91245dcabde85fc8812a0
parentba8b3bf8e88f9bfde684474c199bf9f002dc9d40 (diff)
parentde4db2db1176fdf50b193aeb64d8f739d2b23756 (diff)
Merge pull request #1052 from alessandro-gentilini/fix_typo
Fix typo
-rw-r--r--LibGit2Sharp/IRepository.cs4
-rw-r--r--LibGit2Sharp/Repository.cs4
-rw-r--r--LibGit2Sharp/RepositoryExtensions.cs2
-rw-r--r--LibGit2Sharp/Submodule.cs2
4 files changed, 6 insertions, 6 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>
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>
diff --git a/LibGit2Sharp/RepositoryExtensions.cs b/LibGit2Sharp/RepositoryExtensions.cs
index f54d3ed8..922ff82c 100644
--- a/LibGit2Sharp/RepositoryExtensions.cs
+++ b/LibGit2Sharp/RepositoryExtensions.cs
@@ -774,7 +774,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>
/// <returns>A <see cref="RepositoryStatus"/> holding the state of all the files.</returns>
/// <param name="repository">The <see cref="IRepository"/> being worked with.</param>
diff --git a/LibGit2Sharp/Submodule.cs b/LibGit2Sharp/Submodule.cs
index 81f67754..d832609a 100644
--- a/LibGit2Sharp/Submodule.cs
+++ b/LibGit2Sharp/Submodule.cs
@@ -98,7 +98,7 @@ namespace LibGit2Sharp
public virtual SubmoduleUpdate UpdateRule { get { return updateRule.Value; } }
/// <summary>
- /// Retrieves the state of this submodule in the working directory compared to the staging area and the latest commmit.
+ /// Retrieves the state of this submodule in the working directory compared to the staging area and the latest commit.
/// </summary>
/// <returns>The <see cref="SubmoduleStatus"/> of this submodule.</returns>
public virtual SubmoduleStatus RetrieveStatus()