]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/Assertions.hs
Fix two minor documentation issues.
[spline3.git] / src / Assertions.hs
index 44d793b989be2f4eb83955995adfca976e4cfb9b..b51c25286491c90a506882a78373af6f1f80cd94 100644 (file)
@@ -11,7 +11,7 @@ import Comparisons
 import Point
 
 -- | An HUnit assertion that wraps the almost_equals function. Stolen
---   from the definition of 'assertEqual' in Test/HUnit/Base.hs.
+--   from the definition of 'assertEqual' in Test\/HUnit\/Base.hs.
 assertAlmostEqual :: String -> Double -> Double -> Assertion
 assertAlmostEqual preface expected actual =
   unless (actual ~= expected) (assertFailure msg)
@@ -20,7 +20,7 @@ assertAlmostEqual preface expected actual =
 
 
 -- | An HUnit assertion that wraps the is_close function. Stolen
---   from the definition of 'assertEqual' in Test/HUnit/Base.hs.
+--   from the definition of 'assertEqual' in Test\/HUnit\/Base.hs.
 assertClose :: String -> Point -> Point -> Assertion
 assertClose preface expected actual =
   unless (actual `is_close` expected) (assertFailure msg)