Power should be ** to be consistent

This commit is contained in:
Ozzie Gooen 2022-04-09 20:36:33 -04:00
parent db104694fd
commit 9ad73fe69b

View File

@ -56,7 +56,7 @@ module Pointwise = {
let toString = x =>
switch x {
| #Add => "+"
| #Power => "^"
| #Power => "**"
| #Multiply => "*"
}