fix incorrect indentation in PortDecl.hs

This commit is contained in:
Zachary Snow 2023-07-31 21:27:14 -04:00
parent bef9b1a3f0
commit 19b479d893
1 changed files with 2 additions and 2 deletions

View File

@ -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]