Skip to content

Commit 29fc0a4

Browse files
committed
Fix links in doc comments
1 parent dab2c68 commit 29fc0a4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/recheck-core/shared/src/main/scala/codes/quine/labs/recheck/diagnostics/AttackPattern.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ final case class AttackPattern(pumps: Seq[(UString, UString, Int)], suffix: UStr
3636
copy(n = n)
3737
}
3838

39-
/** Returns the [[UString]]] represented by this. */
39+
/** Returns the `UString` represented by this. */
4040
def asUString: UString = {
4141
val str = new StringBuilder
4242

modules/recheck-core/shared/src/main/scala/codes/quine/labs/recheck/fuzz/FString.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ final case class FString(n: Int, seq: IndexedSeq[FChar]) {
2727
/** A sum of size of each fixed parts in this string. */
2828
def fixedSize: Int = size - seq.collect { case Repeat(_, _) => 1 }.sum - repeatSize
2929

30-
/** Counts [[Repeat]] characters in this string. */
30+
/** Counts [[FString.Repeat]] characters in this string. */
3131
def countRepeat: Int = seq.count(_.isInstanceOf[Repeat])
3232

3333
/** Gets the `idx`-th character. */

modules/recheck-core/shared/src/main/scala/codes/quine/labs/recheck/util/TryUtil.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import scala.util.Failure
55
import scala.util.Success
66
import scala.util.Try
77

8-
/** Utilities for [[scala.util.Try]]. */
8+
/** Utilities for `Try`. */
99
object TryUtil {
1010

1111
/** Applies sequence values to a function and collects the results. */

0 commit comments

Comments
 (0)