From 33e13b677b908899cfe79e7b3a62cb1e5c1e0f62 Mon Sep 17 00:00:00 2001 From: yzlin Date: Mon, 22 Jan 2024 15:01:44 +0800 Subject: [PATCH] typo --- metagpt/utils/parse_docstring.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metagpt/utils/parse_docstring.py b/metagpt/utils/parse_docstring.py index 970257676..8a017e1f7 100644 --- a/metagpt/utils/parse_docstring.py +++ b/metagpt/utils/parse_docstring.py @@ -22,10 +22,10 @@ class DocstringParser(BaseModel): """ def parse_returns(self) -> list[Tuple[str, str]]: - """Parse and return the return information from the docstring. + """Parse and return the output information from the docstring. Returns: - list[Tuple[str, str, str]]: A list of output info. Each info is a tuple of (return type, return description) + list[Tuple[str, str]]: A list of output info. Each info is a tuple of (return type, return description) """ @staticmethod