diff --git a/examples/attempto/LexAttemptoFre.gf b/examples/attempto/LexAttemptoFre.gf index b53017388..e7ce15ba3 100644 --- a/examples/attempto/LexAttemptoFre.gf +++ b/examples/attempto/LexAttemptoFre.gf @@ -27,6 +27,7 @@ oper eachOf np = mkNP (mkPredet "chacun" "chacune" genitive P.True) np ; - adj_thatCl : A -> S -> Cl = \a,s -> mkCl (mkVP (mkAP (mkAP a) s)) ; + adj_thatCl : A -> S -> Cl = \a,s -> + mkCl (mkVP (mkVP (mkAP a)) (SyntaxFre.mkAdv that_Subj s)) ; } diff --git a/examples/attempto/LexAttemptoIta.gf b/examples/attempto/LexAttemptoIta.gf index 191d303ab..09d71999f 100644 --- a/examples/attempto/LexAttemptoIta.gf +++ b/examples/attempto/LexAttemptoIta.gf @@ -27,6 +27,7 @@ oper eachOf np = mkNP (mkPredet "ciascuno" "ciascuna" genitive P.True) np ; - adj_thatCl : A -> S -> Cl = \a,s -> mkCl (mkVP (mkAP (mkAP a) s)) ; + adj_thatCl : A -> S -> Cl = \a,s -> + mkCl (mkVP (mkVP (mkAP a)) (SyntaxIta.mkAdv that_Subj s)) ; }