From 749ad4d67fcc9753c2656f088aa82a2ae94ceb69 Mon Sep 17 00:00:00 2001 From: Richard Chien Date: Sun, 19 Aug 2018 21:46:45 +0800 Subject: [PATCH] Fix typo --- .../code/awesome-bot-3/awesome/plugins/weather/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/code/awesome-bot-3/awesome/plugins/weather/__init__.py b/docs/guide/code/awesome-bot-3/awesome/plugins/weather/__init__.py index b6734fe0..a1502420 100644 --- a/docs/guide/code/awesome-bot-3/awesome/plugins/weather/__init__.py +++ b/docs/guide/code/awesome-bot-3/awesome/plugins/weather/__init__.py @@ -39,5 +39,5 @@ async def _(session: NLPSession): # ns 词性表示地名 city = word.word - # 返回处理结果,3 个参数分别为置信度、命令名、命令会话的参数 + # 返回处理结果,三个参数分别为置信度、命令名、命令会话的参数 return NLPResult(90.0, 'weather', {'city': city})