Skip to content

Commit

Permalink
Add parentheses to xml doc references to OneTimeSetUp method
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirwin committed Nov 27, 2024
1 parent 69bd07f commit 157528c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ internal void DoTestFrameworkTearDown()
/// Access to the current <see cref="System.Random"/> instance. It is safe to use
/// this method from multiple threads, etc., but it should be called while within a runner's
/// scope (so no static initializers). The returned <see cref="System.Random"/> instance will be
/// <b>different</b> when this method is called inside a <see cref="LuceneTestCase.OneTimeSetUp"/> hook (static
/// <b>different</b> when this method is called inside a <see cref="LuceneTestCase.OneTimeSetUp()"/> hook (static
/// suite scope) and within <see cref="OneTimeSetUpAttribute"/>/ <see cref="OneTimeTearDownAttribute"/> hooks or test methods.
///
/// <para/>The returned instance must not be shared with other threads or cross a single scope's
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ public virtual void OneTimeTearDown()
/// Access to the current <see cref="System.Random"/> instance. It is safe to use
/// this method from multiple threads, etc., but it should be called while within a runner's
/// scope (so no static initializers). The returned <see cref="System.Random"/> instance will be
/// <b>different</b> when this method is called inside a <see cref="OneTimeSetUp"/> hook (static
/// <b>different</b> when this method is called inside a <see cref="OneTimeSetUp()"/> hook (static
/// suite scope) and within <see cref="Before"/>/ <see cref="After"/> hooks or test methods.
///
/// <para/>The returned instance must not be shared with other threads or cross a single scope's
Expand Down

0 comments on commit 157528c

Please sign in to comment.