Skip to content

Commit

Permalink
Fix bug in initial files templates.
Browse files Browse the repository at this point in the history
  • Loading branch information
serras committed Aug 24, 2011
1 parent b858596 commit f6d73a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net.sf.eclipsefp.haskell.ui/newFiles/uuagc-haskell.ag
Expand Up @@ -14,7 +14,7 @@ main :: IO ()
main = print (show test)

testTree :: Tree
testTree = Node (Tip 1) (Node (Tip 2) (Tip 3))
testTree = Tree_Node (Tree_Tip 1) (Tree_Node (Tree_Tip 2) (Tree_Tip 3))

test :: Int
test = sem_Tree testTree
Expand Down
2 changes: 1 addition & 1 deletion net.sf.eclipsefp.haskell.ui/newFiles/uuagc.ag
Expand Up @@ -16,7 +16,7 @@ main :: IO ()
main = print (show test)

testTree :: Tree
testTree = Node (Tip 1) (Node (Tip 2) (Tip 3))
testTree = Tree_Node (Tree_Tip 1) (Tree_Node (Tree_Tip 2) (Tree_Tip 3))

test :: Int
test = sem_Tree testTree
Expand Down

0 comments on commit f6d73a3

Please sign in to comment.