From 294965a19ae6f97c7f782829dc35a4c3ea11e697 Mon Sep 17 00:00:00 2001 From: Ozzie Gooen Date: Mon, 17 Feb 2020 09:21:15 +0000 Subject: [PATCH] Minor touch-ups --- src/core/Shape.re | 7 +++++++ src/interface/ValueForm.re | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/core/Shape.re b/src/core/Shape.re index a0a90b5c..0beb09a2 100644 --- a/src/core/Shape.re +++ b/src/core/Shape.re @@ -84,4 +84,11 @@ module Mixed = { discrete, discreteProbabilityMassFraction, }; +}; + +module DomainMixed = { + type t = { + mixedShape, + domain, + }; }; \ No newline at end of file diff --git a/src/interface/ValueForm.re b/src/interface/ValueForm.re index 11f19015..18cfe416 100644 --- a/src/interface/ValueForm.re +++ b/src/interface/ValueForm.re @@ -49,7 +49,7 @@ let make = ) }> {r.name |> ReasonReact.string} - {(r.truthValue ? "TRUE" : "FALSE") |> ReasonReact.string} + {(r.truthValue ? " = True" : " = False") |> ReasonReact.string} ) |> ReasonReact.array} @@ -77,7 +77,7 @@ let make = ); (); }}> - {"True" |> ReasonReact.string} + {"=True" |> ReasonReact.string} )