Skip to content

Commit

Permalink
Fix scaladoc
Browse files Browse the repository at this point in the history
  • Loading branch information
0lejk4 committed Aug 9, 2022
1 parent 89e39da commit 86fc924
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/core/src/main/scala/fields/FieldPath.scala
Original file line number Diff line number Diff line change
Expand Up @@ -131,18 +131,18 @@ object FieldPartConversions {

object FieldPathConversions {

/** Conversion for [[jap.fields.FieldPath.fromPath]] */
/** Conversion for `FieldPath.fromPath` */
implicit def fromPath(path: String): FieldPath = FieldPath.fromPath(path)

/** Conversion for [[jap.fields.FieldPath.fromIndex]] */
/** Conversion for `FieldPath.fromIndex` */
implicit def fromIndex(index: Int): FieldPath = FieldPath.fromIndex(index)

/** Conversion for [[jap.fields.FieldPath.apply]] */
/** Conversion for `FieldPath.apply` */
implicit def fromParts(parts: List[FieldPart]): FieldPath = FieldPath(parts)

/** Conversion for [[jap.fields.FieldPath.fromPaths]] */
/** Conversion for `FieldPath.fromPaths` */
implicit def fromPaths(parts: List[String]): FieldPath = FieldPath.fromPaths(parts)

/** Conversion for [[jap.fields.FieldPath.fromField]] */
/** Conversion for `FieldPath.fromField` */
implicit def fromField[P](f: Field[P]): FieldPath = FieldPath.fromField(f)
}

0 comments on commit 86fc924

Please sign in to comment.