diff options
| author | apple502j <[email protected]> | 2019-03-20 20:59:29 +0900 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-03-20 22:30:22 -0400 |
| commit | 9c32bcdf80f36ead1989f486a31d29b6aada5caf (patch) | |
| tree | 5b59dfde4283b914559fd0699e42afe3152214fe /docs/faq.rst | |
| parent | Add type checking to multi-file send (diff) | |
| download | discord.py-9c32bcdf80f36ead1989f486a31d29b6aada5caf.tar.xz discord.py-9c32bcdf80f36ead1989f486a31d29b6aada5caf.zip | |
Update docs, mostly Inviting Your Bot
Diffstat (limited to 'docs/faq.rst')
| -rw-r--r-- | docs/faq.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/faq.rst b/docs/faq.rst index 3dbfc4c8..5e9aa604 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -215,8 +215,8 @@ one of the following functions: The following use an HTTP request: -- :meth:`abc.Messageable.get_message` -- :meth:`Client.get_user_info` +- :meth:`abc.Messageable.fetch_message` +- :meth:`Client.fetch_user` If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding @@ -297,4 +297,3 @@ Example: :: await ctx.send('Pushing to {} {}'.format(remote, branch)) This could then be used as ``?git push origin master``. - |