summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrasimir Angelov <kr.angelov@gmail.com>2017-08-29 12:00:00 +0200
committerKrasimir Angelov <kr.angelov@gmail.com>2017-08-29 12:00:00 +0200
commit78768483759866227b9bf7e7ad292f18a466fce4 (patch)
tree1448afd277166a167d31d7beb687c871b9ed9cfb
parentc3b0b6dc4b898fd83d9a2ee599fd41c069720b32 (diff)
remove the TODOs from the runtime documentation
-rw-r--r--doc/runtime-api.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/runtime-api.html b/doc/runtime-api.html
index da5b21a9e..23b86b1da 100644
--- a/doc/runtime-api.html
+++ b/doc/runtime-api.html
@@ -293,7 +293,7 @@ then the right method to use is <tt>tabularLinearize</tt>:
{'s Sg Nom': 'red theatre', 's Pl Nom': 'red theatres', 's Pl Gen': "red theatres'", 's Sg Gen': "red theatre's"}
</pre>
<pre class="haskell">
-Prelude PGF2> tabularLinearize eng e ---- TODO
+Prelude PGF2> tabularLinearize eng e
fromList [("s Sg Nom", "red theatre"), ("s Pl Nom", "red theatres"), ("s Pl Gen", "red theatres'"), ("s Sg Gen", "red theatre's")]
</pre>
<pre class="java">
@@ -315,7 +315,7 @@ a list of phrases:
(CN:4 (AP:1 (A:0 red)) (CN:3 (N:2 theatre)))
</pre>
<pre class="haskell">
-Prelude PGF2> let [b] = bracketedLinearize eng e ---- TODO
+Prelude PGF2> let [b] = bracketedLinearize eng e
Prelude PGF2> print b
(CN:4 (AP:1 (A:0 red)) (CN:3 (N:2 theatre)))
</pre>