From a6e44eae494cebd0fd382100273f892e5943a0bd Mon Sep 17 00:00:00 2001 From: Antonio Nuno Monteiro Date: Mon, 29 Mar 2021 11:55:56 -0700 Subject: [PATCH] fix code review items --- __tests__/extensions/Relude_Extensions_Ord_test.re | 2 +- __tests__/js/Relude_Js_Json_test.re | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/extensions/Relude_Extensions_Ord_test.re b/__tests__/extensions/Relude_Extensions_Ord_test.re index 237edee2..e79887bf 100644 --- a/__tests__/extensions/Relude_Extensions_Ord_test.re +++ b/__tests__/extensions/Relude_Extensions_Ord_test.re @@ -1,6 +1,6 @@ open Jest; open Expect; -open !Relude.Globals; +open! Relude.Globals; open BsBastet.Interface; module User = { diff --git a/__tests__/js/Relude_Js_Json_test.re b/__tests__/js/Relude_Js_Json_test.re index ed579552..66fe44f8 100644 --- a/__tests__/js/Relude_Js_Json_test.re +++ b/__tests__/js/Relude_Js_Json_test.re @@ -792,7 +792,7 @@ describe("Json", () => { let actual = MyType.make <$> (JD.stringAt(0, json) >>= (a => VOk(a ++ a))) // bind (flatMap) a value here just for fun - <*> (JD.intAt(1, json) <$$> (a => a * 2)) // map a value here - <#> is flipMap - we need to flip it b/c the Validation comes first here + <*> (JD.intAt(1, json) <$$> (a => a * 2)) // map a value here - <$$> is flipMap - we need to flip it b/c the Validation comes first here <*> JD.boolAt(2, json) <*> JD.arrayAt(3, (_index, json) => JD.string(json), json) <*> JD.floatAt(4, json)