Skip to content

Commit 3c33271

Browse files
committed
Fixed a warning in scaladoc for def fromDigits in FromDigits.scala.
1 parent b2850be commit 3c33271

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/src/scala/util/FromDigits.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ trait FromDigits[T] {
1414
* - sign `+` or `-`
1515
* - sequence of digits between 0 and 9
1616
*
17-
* @throws MalformedNumber if digit string is not legal for the given type
18-
* @throws NumberTooLarge if value of result does not fit into `T`'s range
19-
* @throws NumberTooSmall in case of numeric underflow (e.g. a non-zero
17+
* @throws FromDigits.MalformedNumber if digit string is not legal for the given type
18+
* @throws FromDigits.NumberTooLarge if value of result does not fit into `T`'s range
19+
* @throws FromDigits.NumberTooSmall in case of numeric underflow (e.g. a non-zero
2020
* floating point literal that produces a zero value)
2121
*/
2222
def fromDigits(digits: String): T

0 commit comments

Comments
 (0)