@@ -299,10 +299,11 @@ def analyze(self, text='', file_path=None):
299299"""
300300 Make morphology analysis for a text.
301301
302- :param text: text to analyze
303302 :type text: str
304- :paramfile_path: alternative mode: if defined, file_path will be used toopen utf8 text file for analysis. Argument text is not used
303+ :paramtext: text toanalyze
305304 :type file_path: str
305+ :param file_path: alternative mode: if defined, file_path will be used to open utf8 text file for analysis.
306+ Argument text is not used in this case.
306307 :returns: result of morphology analysis.
307308 :rtype: dict
308309 """
@@ -327,10 +328,11 @@ def lemmatize(self, text='', file_path=None):
327328"""
328329 Make morphology analysis for a text and return list of lemmas.
329330
330- :param text: text to analyze
331331 :type text: str
332- :paramfile_path: alternative mode: if defined, file_path will be used toopen utf8 text file for analysis. Argument text is not used
332+ :paramtext: text toanalyze
333333 :type file_path: str
334+ :param file_path: alternative mode: if defined, file_path will be used to open utf8 text file for analysis.
335+ Argument text is not used in this case.
334336 :returns: list of lemmas
335337 :rtype: list
336338 """