From 19b479d893bfd282ea18f32df23b5b251dce2b52 Mon Sep 17 00:00:00 2001 From: Zachary Snow Date: Mon, 31 Jul 2023 21:27:14 -0400 Subject: [PATCH] fix incorrect indentation in PortDecl.hs --- src/Convert/PortDecl.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Convert/PortDecl.hs b/src/Convert/PortDecl.hs index f32a7db..ee76b00 100644 --- a/src/Convert/PortDecl.hs +++ b/src/Convert/PortDecl.hs @@ -34,9 +34,9 @@ traverseDescription other = other convertPackageItem :: PackageItem -> PackageItem convertPackageItem (Function l t x decls stmts) = - Function l t x (convertTFDecls decls) stmts + Function l t x (convertTFDecls decls) stmts convertPackageItem (Task l x decls stmts) = - Task l x (convertTFDecls decls) stmts + Task l x (convertTFDecls decls) stmts convertPackageItem other = other convertPorts :: Identifier -> [Identifier] -> [ModuleItem] -> [ModuleItem]