Skip to content

Commit

Permalink
Lucene.Net.Store (BaseDirectory + BaseDirectoryWrapper): Fixed XML co…
Browse files Browse the repository at this point in the history
…mments so they don't produce warnings
  • Loading branch information
NightOwl888 committed May 16, 2023
1 parent e9c47b2 commit 51cc741
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Lucene.Net.TestFramework/Store/BaseDirectoryWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class BaseDirectoryWrapper : FilterDirectory
/// Atomically sets the value to the given updated value
/// if the current value <c>==</c> the expected value.
/// <para/>
/// Expert: Use this in the <see cref="Dispose(bool)"/> call to skip
/// Expert: Use this in the <see cref="Directory.Dispose(bool)"/> call to skip
/// duplicate calls by using the folling if block to guard the
/// dispose logic.
/// <code>
Expand Down Expand Up @@ -97,7 +97,7 @@ protected override void Dispose(bool disposing)
/// <summary>
/// Gets a value indicating whether the current <see cref="Directory"/> instance is open.
/// <para/>
/// Expert: This is useful for implementing the <see cref="EnsureOpen()"/> logic.
/// Expert: This is useful for implementing the <see cref="Directory.EnsureOpen()"/> logic.
/// </summary>
public virtual bool IsOpen
{
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Store/BaseDirectory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected internal virtual bool IsOpen
/// Atomically sets the value to the given updated value
/// if the current value <c>==</c> the expected value.
/// <para/>
/// Expert: Use this in the <see cref="Dispose(bool)"/> call to skip
/// Expert: Use this in the <see cref="Directory.Dispose(bool)"/> call to skip
/// duplicate calls by using the folling if block to guard the
/// dispose logic.
/// <code>
Expand Down

0 comments on commit 51cc741

Please sign in to comment.