From e8e482c55ff95b0ec2392ecf040352bcad8dccc9 Mon Sep 17 00:00:00 2001 From: Lukasz Czajka Date: Mon, 9 Sep 2024 13:28:26 +0200 Subject: [PATCH] comment --- src/Juvix/Compiler/Core/Transformation/ComputeCaseANF.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Juvix/Compiler/Core/Transformation/ComputeCaseANF.hs b/src/Juvix/Compiler/Core/Transformation/ComputeCaseANF.hs index 6b0941fccf..fae9cba467 100644 --- a/src/Juvix/Compiler/Core/Transformation/ComputeCaseANF.hs +++ b/src/Juvix/Compiler/Core/Transformation/ComputeCaseANF.hs @@ -2,7 +2,7 @@ module Juvix.Compiler.Core.Transformation.ComputeCaseANF (computeCaseANF) where -- A transformation which lifts out non-immediate values matched on in case -- expressions by introducing let-bindings for them. In essence, this is a --- partial ANF transfromation for case expressions only. +-- partial ANF transformation for case expressions only. -- -- For example, transforms -- ```