Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.8.2
sbt.version=1.10.3
6 changes: 3 additions & 3 deletions src/main/scala/fixedpoint/BinaryPoint.scala
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ trait HasBinaryPoint {

def binaryPoint: BinaryPoint

/** Return the [[Double]] value of this instance if it is a Literal
/** Return the Double value of this instance if it is a Literal
*
* @note this method may throw an exception if the literal value won't fit in a Double
*/
Expand All @@ -55,7 +55,7 @@ trait HasBinaryPoint {
*/
def litToDouble: Double = litToDoubleOption.get

/** Return the [[BigDecimal]] value of this instance if it is a Literal
/** Return the BigDecimal value of this instance if it is a Literal
*
* @note this method may throw an exception if the literal value won't fit in a BigDecimal
*/
Expand All @@ -67,7 +67,7 @@ trait HasBinaryPoint {
}
}

/** Return the [[BigDecimal]] value of this instance assuming it is a literal (convenience method)
/** Return the BigDecimal value of this instance assuming it is a literal (convenience method)
*
* @return
*/
Expand Down
Loading