diff options
Diffstat (limited to 'doc/runtime-api.html')
| -rw-r--r-- | doc/runtime-api.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/runtime-api.html b/doc/runtime-api.html index 9844ff89e..d8d34d38e 100644 --- a/doc/runtime-api.html +++ b/doc/runtime-api.html @@ -775,7 +775,7 @@ word form with its possible analyses: Prelude PGF2> mapM_ print [(form,lemma,analysis,prob) | (form,analyses) <- fullFormLexicon eng, (lemma,analysis,prob) <- analyses] </pre> <pre class="java"> -for (FullFormEntry entry in eng.fullFormLexicon()) { ///// TODO +for (FullFormEntry entry : eng.fullFormLexicon()) { for (MorphoAnalysis analysis : entry.getAnalyses()) { System.out.println(entry.getForm()+" "+analysis.getProb()+" "+analysis.getLemma()+" "+analysis.getField()); } |
