From 75668a6a082b0a300c5b071f0dc6c0ffd2b68eff Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Mon, 26 Feb 2024 10:23:10 +0100 Subject: [PATCH] =?UTF-8?q?Formatting=20in=20doc=20of=20`@=3D=3F`=20and=20?= =?UTF-8?q?`@=3F=3D`:=20put=20some=20emphasis?= Should help readability. --- hunit/Test/Tasty/HUnit/Orig.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hunit/Test/Tasty/HUnit/Orig.hs b/hunit/Test/Tasty/HUnit/Orig.hs index 55f674ad..5003641c 100644 --- a/hunit/Test/Tasty/HUnit/Orig.hs +++ b/hunit/Test/Tasty/HUnit/Orig.hs @@ -76,7 +76,7 @@ assertEqual preface expected actual = infix 1 @?, @=?, @?= -- | Asserts that the specified actual value is equal to the expected value --- (with the expected value on the left-hand side). +-- (with the /expected/ value on the left-hand side). (@=?) :: (Eq a, Show a, HasCallStack) => a -- ^ The expected value @@ -85,7 +85,7 @@ infix 1 @?, @=?, @?= expected @=? actual = assertEqual "" expected actual -- | Asserts that the specified actual value is equal to the expected value --- (with the actual value on the left-hand side). +-- (with the /actual/ value on the left-hand side). (@?=) :: (Eq a, Show a, HasCallStack) => a -- ^ The actual value