Skip to content

Commit

Permalink
De-linkify some types to avoid warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown-stripe committed Jun 3, 2018
1 parent ef8b13f commit a09c986
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions modules/core/shared/src/main/scala/io/circe/Decoder.scala
Expand Up @@ -448,7 +448,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Boolean]].
* Decode a JSON value into a `java.lang.Boolean`.
*
* @group Decoding
*/
Expand All @@ -465,7 +465,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Character]].
* Decode a JSON value into a `java.lang.Character`.
*
* @group Decoding
*/
Expand All @@ -491,7 +491,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Float]].
* Decode a JSON value into a `java.lang.Float`.
*
* @group Decoding
*/
Expand Down Expand Up @@ -519,7 +519,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Double]].
* Decode a JSON value into a `java.lang.Double`.
*
* @group Decoding
*/
Expand Down Expand Up @@ -547,7 +547,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Byte]].
* Decode a JSON value into a `java.lang.Byte`.
*
* @group Decoding
*/
Expand Down Expand Up @@ -575,7 +575,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Short]].
* Decode a JSON value into a `java.lang.Short`.
*
* @group Decoding
*/
Expand Down Expand Up @@ -603,7 +603,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Integer]].
* Decode a JSON value into a `java.lang.Integer`.
*
* @group Decoding
*/
Expand Down Expand Up @@ -634,7 +634,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.lang.Long]].
* Decode a JSON value into a `java.lang.Long`.
*
* @group Decoding
*/
Expand Down Expand Up @@ -665,7 +665,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.math.BigInteger]].
* Decode a JSON value into a `java.math.BigInteger`.
*
* @group Decoding
*/
Expand Down Expand Up @@ -699,7 +699,7 @@ final object Decoder extends TupleDecoders with ProductDecoders with LowPriority
}

/**
* Decode a JSON value into a [[java.math.BigDecimal]].
* Decode a JSON value into a `java.math.BigDecimal`.
*
* @group Decoding
*/
Expand Down

0 comments on commit a09c986

Please sign in to comment.