diff --git a/LibGit2Sharp/IRepository.cs b/LibGit2Sharp/IRepository.cs index 4b0b56d8d..391cce1e1 100644 --- a/LibGit2Sharp/IRepository.cs +++ b/LibGit2Sharp/IRepository.cs @@ -361,14 +361,14 @@ public interface IRepository : IDisposable void Remove(IEnumerable paths, bool removeFromWorkingDirectory, ExplicitPathsOptions explicitPathsOptions); /// - /// 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. /// /// The relative path within the working directory to the file. /// A representing the state of the parameter. FileStatus RetrieveStatus(string filePath); /// - /// 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. /// /// If set, the options that control the status investigation. /// A holding the state of all the files. diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs index 5d08d133b..247d67eda 100644 --- a/LibGit2Sharp/Repository.cs +++ b/LibGit2Sharp/Repository.cs @@ -1888,7 +1888,7 @@ public void Remove(IEnumerable paths, bool removeFromWorkingDirectory, E } /// - /// 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. /// /// The relative path within the working directory to the file. /// A representing the state of the parameter. @@ -1902,7 +1902,7 @@ public FileStatus RetrieveStatus(string filePath) } /// - /// 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. /// /// If set, the options that control the status investigation. /// A holding the state of all the files. diff --git a/LibGit2Sharp/RepositoryExtensions.cs b/LibGit2Sharp/RepositoryExtensions.cs index f54d3ed86..922ff82cd 100644 --- a/LibGit2Sharp/RepositoryExtensions.cs +++ b/LibGit2Sharp/RepositoryExtensions.cs @@ -774,7 +774,7 @@ public static void Remove(this IRepository repository, IEnumerable paths } /// - /// 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. /// /// A holding the state of all the files. /// The being worked with. diff --git a/LibGit2Sharp/Submodule.cs b/LibGit2Sharp/Submodule.cs index 81f677547..d832609a9 100644 --- a/LibGit2Sharp/Submodule.cs +++ b/LibGit2Sharp/Submodule.cs @@ -98,7 +98,7 @@ internal Submodule(Repository repo, string name, string path, string url) public virtual SubmoduleUpdate UpdateRule { get { return updateRule.Value; } } /// - /// 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. /// /// The of this submodule. public virtual SubmoduleStatus RetrieveStatus()