Skip to content

Commit 4439cad

Browse files
committed
Merge pull request #1052 from alessandro-gentilini/fix_typo
Fix typo
2 parents ba8b3bf + de4db2d commit 4439cad

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

LibGit2Sharp/IRepository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,14 +361,14 @@ public interface IRepository : IDisposable
361361
void Remove(IEnumerable<string> paths, bool removeFromWorkingDirectory, ExplicitPathsOptions explicitPathsOptions);
362362

363363
/// <summary>
364-
/// Retrieves the state of a file in the working directory, comparing it against the staging area and the latest commmit.
364+
/// Retrieves the state of a file in the working directory, comparing it against the staging area and the latest commit.
365365
/// </summary>
366366
/// <param name="filePath">The relative path within the working directory to the file.</param>
367367
/// <returns>A <see cref="FileStatus"/> representing the state of the <paramref name="filePath"/> parameter.</returns>
368368
FileStatus RetrieveStatus(string filePath);
369369

370370
/// <summary>
371-
/// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commmit.
371+
/// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commit.
372372
/// </summary>
373373
/// <param name="options">If set, the options that control the status investigation.</param>
374374
/// <returns>A <see cref="RepositoryStatus"/> holding the state of all the files.</returns>

LibGit2Sharp/Repository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,7 +1888,7 @@ public void Remove(IEnumerable<string> paths, bool removeFromWorkingDirectory, E
18881888
}
18891889

18901890
/// <summary>
1891-
/// Retrieves the state of a file in the working directory, comparing it against the staging area and the latest commmit.
1891+
/// Retrieves the state of a file in the working directory, comparing it against the staging area and the latest commit.
18921892
/// </summary>
18931893
/// <param name="filePath">The relative path within the working directory to the file.</param>
18941894
/// <returns>A <see cref="FileStatus"/> representing the state of the <paramref name="filePath"/> parameter.</returns>
@@ -1902,7 +1902,7 @@ public FileStatus RetrieveStatus(string filePath)
19021902
}
19031903

19041904
/// <summary>
1905-
/// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commmit.
1905+
/// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commit.
19061906
/// </summary>
19071907
/// <param name="options">If set, the options that control the status investigation.</param>
19081908
/// <returns>A <see cref="RepositoryStatus"/> holding the state of all the files.</returns>

LibGit2Sharp/RepositoryExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ public static void Remove(this IRepository repository, IEnumerable<string> paths
774774
}
775775

776776
/// <summary>
777-
/// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commmit.
777+
/// Retrieves the state of all files in the working directory, comparing them against the staging area and the latest commit.
778778
/// </summary>
779779
/// <returns>A <see cref="RepositoryStatus"/> holding the state of all the files.</returns>
780780
/// <param name="repository">The <see cref="IRepository"/> being worked with.</param>

LibGit2Sharp/Submodule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ internal Submodule(Repository repo, string name, string path, string url)
9898
public virtual SubmoduleUpdate UpdateRule { get { return updateRule.Value; } }
9999

100100
/// <summary>
101-
/// Retrieves the state of this submodule in the working directory compared to the staging area and the latest commmit.
101+
/// Retrieves the state of this submodule in the working directory compared to the staging area and the latest commit.
102102
/// </summary>
103103
/// <returns>The <see cref="SubmoduleStatus"/> of this submodule.</returns>
104104
public virtual SubmoduleStatus RetrieveStatus()

0 commit comments

Comments
 (0)