From d86bada1dcacd30f4b09a639b2d9fa127e9f01f2 Mon Sep 17 00:00:00 2001 From: Alessandro Gentilini Date: Mon, 18 May 2015 21:29:50 +0200 Subject: [PATCH 1/4] Fix a typo in a comment. --- LibGit2Sharp/Submodule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() From e0bf814970249672bf91df48370e3c4840ab9908 Mon Sep 17 00:00:00 2001 From: Alessandro Gentilini Date: Mon, 18 May 2015 21:31:49 +0200 Subject: [PATCH 2/4] Fix a typo in a comment. --- LibGit2Sharp/IRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. From 37cf8af91a1363f8bf53bb2eaea53e35db67525b Mon Sep 17 00:00:00 2001 From: Alessandro Gentilini Date: Mon, 18 May 2015 21:33:23 +0200 Subject: [PATCH 3/4] Fix a typo in a comment. --- LibGit2Sharp/Repository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. From de4db2db1176fdf50b193aeb64d8f739d2b23756 Mon Sep 17 00:00:00 2001 From: Alessandro Gentilini Date: Mon, 18 May 2015 21:34:09 +0200 Subject: [PATCH 4/4] Fix a typo in a comment. --- LibGit2Sharp/RepositoryExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.