diff --git a/System/FilePath/Internal.hs b/System/FilePath/Internal.hs
index f7b3469f9b0397a63f492b085382c1c14288b0ad..051e44c76579bda84aba6fdfd041d93205fca21c 100644
--- a/System/FilePath/Internal.hs
+++ b/System/FilePath/Internal.hs
@@ -729,8 +729,8 @@ equalFilePath a b = f a == f b
 
 -- | Contract a filename, based on a relative path.
 --
---   There is no corresponding @makeAbsolute@ function, instead use
---   @System.Directory.canonicalizePath@ which has the same effect.
+--   The corresponding @makeAbsolute@ function can be found in
+--   @System.Directory@.
 --
 -- >          makeRelative "/directory" "/directory/file.ext" == "file.ext"
 -- >          Valid x => makeRelative (takeDirectory x) x `equalFilePath` takeFileName x