Skip to content

Commit

Permalink
Clearer comment
Browse files Browse the repository at this point in the history
Signed-off-by: Hongxin Liang <honnix@users.noreply.github.com>
  • Loading branch information
honnix committed Nov 22, 2023
1 parent 288ce3e commit e53f361
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ object SdkLiteralTypes {
value.asInstanceOf[Double].toLong
} else if (tpe =:= typeOf[Float]) {
value.asInstanceOf[Double].toFloat
} else if (tpe <:< typeOf[Option[Any]]) { // this has to be before Product check
} else if (tpe <:< typeOf[Option[Any]]) { // this has to be before Product check because Option is a Product
Some(
valueToParamValue(
value,
Expand Down

0 comments on commit e53f361

Please sign in to comment.