Skip to content

Commit

Permalink
Fixing ir (#1131)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelchan authored Jan 4, 2024
1 parent cdccf45 commit 6cb3081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Morphir/IR/SDK/Decimal.elm
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ moduleSpec =
, vSpec "negate" [ ( "value", decimalType () ) ] (decimalType ())
, vSpec "mul" [ ( "a", decimalType () ), ( "b", decimalType () ) ] (decimalType ())
, vSpec "div" [ ( "a", decimalType () ), ( "b", decimalType () ) ] (maybeType () (decimalType ()))
, vSpec "divWithDefault" [ ( "default", decimalType () ), ( "a", decimalType () ), ( "b", decimalType () ) ] (maybeType () (decimalType ()))
, vSpec "divWithDefault" [ ( "default", decimalType () ), ( "a", decimalType () ), ( "b", decimalType () ) ] (decimalType ())
, vSpec "truncate" [ ( "d", decimalType () ) ] (decimalType ())
, vSpec "round" [ ( "d", decimalType () ) ] (decimalType ())
, vSpec "gt" [ ( "a", decimalType () ), ( "b", decimalType () ) ] (boolType ())
Expand Down

0 comments on commit 6cb3081

Please sign in to comment.