Skip to content

Commit 279a641

Browse files
committed
Fixed javadoc
1 parent 2e52743 commit 279a641

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

table/src/main/java/tech/ydb/table/values/DecimalValue.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,26 @@ public class DecimalValue implements Value<DecimalType> {
2828

2929
/**
3030
* @deprecated
31-
* Positive infinity 10^{@value DecimalType#MAX_PRECISION}.
31+
* Positive infinity 10^MAX_PRECISION.
32+
* Use {@link DecimalType#getInf() } instead
3233
*/
3334
@Deprecated
3435
public static final DecimalValue INF = new DecimalValue(
3536
MAX_DECIMAL, 0x0013426172C74D82L, 0x2B878FE800000000L);
3637

3738
/**
3839
* @deprecated
39-
* Negative infinity -10^{@value DecimalType#MAX_PRECISI0ON}.
40+
* Negative infinity -10^MAX_PRECISI0ON.
41+
* Use {@link DecimalType#getNegInf() } instead
4042
*/
4143
@Deprecated
4244
public static final DecimalValue NEG_INF = new DecimalValue(
4345
MAX_DECIMAL, 0xFFECBD9E8D38B27DL, 0xD478701800000000L);
4446

4547
/**
4648
* @deprecated
47-
* Not a number 10^{@value DecimalType#MAX_PRECISION} + 1.
49+
* Not a number 10^MAX_PRECISION + 1.
50+
* Use {@link DecimalType#getNaN() } instead
4851
*/
4952
@Deprecated
5053
public static final DecimalValue NAN = new DecimalValue(

0 commit comments

Comments
 (0)