Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kpu/kenlm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorViswanath Sivakumar <viswanath@fb.com>2020-10-12 17:20:49 +0300
committerViswanath Sivakumar <viswanath@fb.com>2020-10-12 17:20:49 +0300
commit3008f2cfe5e402851f0843f0f0f8678ead860f8c (patch)
treecd08ca67dc3579d0181da2f8fa79da0dea973663 /python
parent1f054617eca14eae921e987b4b4eeb2b1d91de6b (diff)
Fix docstring in python/kenlm.pyx
Diffstat (limited to 'python')
-rw-r--r--python/kenlm.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/kenlm.pyx b/python/kenlm.pyx
index 3e4cd9a..4478483 100644
--- a/python/kenlm.pyx
+++ b/python/kenlm.pyx
@@ -264,7 +264,7 @@ cdef class Model:
def BaseFullScore(self, State in_state, str word, State out_state):
"""
- Wrapper around model.BaseScore(in_state, Index(word), out_state)
+ Wrapper around model.BaseFullScore(in_state, Index(word), out_state)
:param word: the suffix
:param state: the context (defaults to NullContext)