Skip to content

Commit e0bf814

Browse files
Fix a typo in a comment.
1 parent d86bada commit e0bf814

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
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>

0 commit comments

Comments
 (0)