✏️ fix typo

This commit is contained in:
yanyongyu 2020-12-21 19:32:58 +08:00
parent f3243f8989
commit 44a15d684b
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ Adapter 类型
```python ```python
await bot.call_api("send_msg", message="hello world"}) await bot.call_api("send_msg", message="hello world")
await bot.send_msg(message="hello world") await bot.send_msg(message="hello world")
``` ```

View File

@ -116,7 +116,7 @@ class Bot(abc.ABC):
.. code-block:: python .. code-block:: python
await bot.call_api("send_msg", message="hello world"}) await bot.call_api("send_msg", message="hello world")
await bot.send_msg(message="hello world") await bot.send_msg(message="hello world")
""" """
raise NotImplementedError raise NotImplementedError