Skip to content

Commit

Permalink
Merge pull request #1052 from alessandro-gentilini/fix_typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
nulltoken committed May 19, 2015
2 parents ba8b3bf + de4db2d commit 4439cad
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions LibGit2Sharp/IRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -361,14 +361,14 @@ public interface IRepository : IDisposable
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>
Expand Down
4 changes: 2 additions & 2 deletions LibGit2Sharp/Repository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,7 @@ public void Remove(IEnumerable<string> paths, bool removeFromWorkingDirectory, E
}

/// <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>
Expand All @@ -1902,7 +1902,7 @@ public 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>
Expand Down
2 changes: 1 addition & 1 deletion LibGit2Sharp/RepositoryExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ public static void Remove(this IRepository repository, IEnumerable<string> paths
}

/// <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>
Expand Down
2 changes: 1 addition & 1 deletion LibGit2Sharp/Submodule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ internal Submodule(Repository repo, string name, string path, string url)
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()
Expand Down

0 comments on commit 4439cad

Please sign in to comment.