Skip to content

Commit

Permalink
Fix links in doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust committed Feb 14, 2023
1 parent dab2c68 commit 29fc0a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ final case class AttackPattern(pumps: Seq[(UString, UString, Int)], suffix: UStr
copy(n = n)
}

/** Returns the [[UString]]] represented by this. */
/** Returns the `UString` represented by this. */
def asUString: UString = {
val str = new StringBuilder

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

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

/** Gets the `idx`-th character. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import scala.util.Failure
import scala.util.Success
import scala.util.Try

/** Utilities for [[scala.util.Try]]. */
/** Utilities for `Try`. */
object TryUtil {

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

0 comments on commit 29fc0a4

Please sign in to comment.