Skip to content
Snippets Groups Projects
Commit d0142f21 authored by Javran Cheng's avatar Javran Cheng Committed by Marge Bot
Browse files

Fix doc for Data.Function.fix.

Doc-only change.
parent 9342b1fa
No related branches found
No related tags found
1 merge request!943Fix doc for Data.Function.fix.
Pipeline #5897 failed
......@@ -45,7 +45,7 @@ infixl 1 &
-- 120
--
-- Instead of making a recursive call, we introduce a dummy parameter @rec@;
-- when used within 'fix', this parameter then refers to 'fix' argument, hence
-- when used within 'fix', this parameter then refers to 'fix'’s argument, hence
-- the recursion is reintroduced.
fix :: (a -> a) -> a
fix f = let x = f x in x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment