Skip to content

Commit 0fbacd3

Browse files
committed
fixup! Drop optional parameters in Repository.cs
1 parent af1fa17 commit 0fbacd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LibGit2Sharp/Repository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public sealed class Repository : IRepository
3737
private readonly Lazy<PathCase> pathCase;
3838

3939
/// <summary>
40-
/// Initializes a new instance of the <see cref="Repository"/> class, providing ooptional behavioral overrides through <paramref name="options"/> parameter.
40+
/// Initializes a new instance of the <see cref="Repository"/> class.
4141
/// <para>For a standard repository, <paramref name="path"/> should either point to the ".git" folder or to the working directory. For a bare repository, <paramref name="path"/> should directly point to the repository folder.</para>
4242
/// </summary>
4343
/// <param name="path">
@@ -48,7 +48,7 @@ public Repository(string path) : this(path, null)
4848
{ }
4949

5050
/// <summary>
51-
/// Initializes a new instance of the <see cref="Repository"/> class, providing ooptional behavioral overrides through <paramref name="options"/> parameter.
51+
/// Initializes a new instance of the <see cref="Repository"/> class, providing optional behavioral overrides through <paramref name="options"/> parameter.
5252
/// <para>For a standard repository, <paramref name="path"/> should either point to the ".git" folder or to the working directory. For a bare repository, <paramref name="path"/> should directly point to the repository folder.</para>
5353
/// </summary>
5454
/// <param name="path">

0 commit comments

Comments
 (0)