From 37db045169158833cf2af07260dc56bd03b92e3e Mon Sep 17 00:00:00 2001 From: Dominic Orchard Date: Thu, 12 Sep 2024 10:30:22 +0100 Subject: [PATCH] typo --- src/Language/Fortran/Analysis/DataFlow.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Language/Fortran/Analysis/DataFlow.hs b/src/Language/Fortran/Analysis/DataFlow.hs index 3f306453..35c2e155 100644 --- a/src/Language/Fortran/Analysis/DataFlow.hs +++ b/src/Language/Fortran/Analysis/DataFlow.hs @@ -374,7 +374,7 @@ genConstExpMap pf = ceMap -- Generate map of information about 'constant expressions'. ceMap = IM.fromList [ (label, doExpr e) | e <- universeBi pf, Just label <- [labelOf e] ] - -- Initial map of parameteri declarations + -- Initial map of parameter declarations pvMap :: M.Map Name Repr.FValue pvMap = execState (recursivelyProcessDecls declarations) M.empty