From f70f4e90fda0c5c76f5e77465d6c2913e9118752 Mon Sep 17 00:00:00 2001 From: Julian Risch Date: Tue, 5 Jul 2022 12:00:40 +0200 Subject: [PATCH] correct docstring parameter name (#2757) --- haystack/utils/export_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haystack/utils/export_utils.py b/haystack/utils/export_utils.py index 94e8b3844..791bf31cb 100644 --- a/haystack/utils/export_utils.py +++ b/haystack/utils/export_utils.py @@ -19,7 +19,7 @@ def print_answers(results: dict, details: str = "all", max_text_len: Optional[in Utility function to print results of Haystack pipelines :param results: Results from a pipeline :param details: One of "minimum", "medium", "all". Defining the level of details to print. - :param max_text_lenght: shorten lengthy text fields to the maximum allowed length. Set to + :param max_text_len: shorten lengthy text fields to the maximum allowed length. Set to None to not cut long text. :return: None """