1
0
forked from GitHub/gf-core

revised comments in Construction so that some functions can be shown in absfun doc

This commit is contained in:
aarne
2015-10-15 15:01:38 +00:00
parent 38c6bbc71b
commit a3bc2c4cf0
2 changed files with 22 additions and 22 deletions

View File

@@ -286,7 +286,7 @@ mkV2 : overload {
-- Three-place (ditransitive) verbs need two prepositions, of which
-- the first one or both can be absent.
accdatV3 : V -> V3 ; -- geben + acc + dat
accdatV3 : V -> V3 ; -- geben + dat + acc
dirV3 : V -> Prep -> V3 ; -- senden + acc + nach
mkV3 : overload {
@@ -585,7 +585,7 @@ mkV2 : overload {
} ;
dirV3 v p = mkV3 v (mkPrep [] accusative) p ;
accdatV3 v = dirV3 v (mkPrep [] dative) ;
accdatV3 v = mkV3 v (mkPrep [] dative) (mkPrep [] accusative) ;
mkVS v = v ** {lock_VS = <>} ;
mkVQ v = v ** {lock_VQ = <>} ;