From 5dbeb4beeedef9ed6f41f37f820bc3d04ea977cc Mon Sep 17 00:00:00 2001 From: "john.j.camilleri" Date: Tue, 2 Apr 2013 09:19:08 +0000 Subject: [PATCH] Replace "CId" with "Language" in type signature for PGF.tabularLinearizes --- src/runtime/haskell/PGF/Linearize.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/haskell/PGF/Linearize.hs b/src/runtime/haskell/PGF/Linearize.hs index 39c59cd3f..d24e98d38 100644 --- a/src/runtime/haskell/PGF/Linearize.hs +++ b/src/runtime/haskell/PGF/Linearize.hs @@ -50,7 +50,7 @@ firstLin (_,arr) -- | Creates a table from feature name to linearization. -- The outher list encodes the variations -tabularLinearizes :: PGF -> CId -> Expr -> [[(String,String)]] +tabularLinearizes :: PGF -> Language -> Expr -> [[(String,String)]] tabularLinearizes pgf lang e = map cnv (linTree pgf lang e) where cnv ((cat,_),lin) = zip (lbls cat) $ map (unwords . concatMap flattenBracketedString . snd . untokn "") (elems lin)