From e15daa8f6d9d8ef7c7bda10b982cf8a604b85e9c Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 30 Jul 2020 01:09:30 -0700 Subject: [PATCH] Make the detailed time traveling example a subsection. --- content/blog/haskell_lazy_evaluation/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/haskell_lazy_evaluation/index.md b/content/blog/haskell_lazy_evaluation/index.md index 69ef961..b9db216 100644 --- a/content/blog/haskell_lazy_evaluation/index.md +++ b/content/blog/haskell_lazy_evaluation/index.md @@ -232,7 +232,7 @@ doRepMax xs = snd t where t = repMax xs (fst t) ``` -### Detailed Example: Reducing `doRepMax` +#### Detailed Example: Reducing `doRepMax` If the above examples haven't elucidated how `doRepMax` works, stick around in this section and we will go through it step-by-step.