diff options
author | mathieui <mathieui@mathieui.net> | 2022-02-27 20:32:48 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2022-02-27 20:32:48 +0100 |
commit | b23b805dc521edf0dcdd8d4ac6b8b43539aba536 (patch) | |
tree | a92b8f8f806671bc782b3cea4562f13901bd09e0 | |
parent | 11b555af20ac3b116c2feaab2a1920fd0fe342e8 (diff) | |
download | slixmpp-b23b805dc521edf0dcdd8d4ac6b8b43539aba536.tar.gz slixmpp-b23b805dc521edf0dcdd8d4ac6b8b43539aba536.tar.bz2 slixmpp-b23b805dc521edf0dcdd8d4ac6b8b43539aba536.tar.xz slixmpp-b23b805dc521edf0dcdd8d4ac6b8b43539aba536.zip |
docs: Fix some wrong references
-rw-r--r-- | docs/howto/xmpp_tdg.rst | 2 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0313/mam.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/howto/xmpp_tdg.rst b/docs/howto/xmpp_tdg.rst index 53194e13..d3b761d2 100644 --- a/docs/howto/xmpp_tdg.rst +++ b/docs/howto/xmpp_tdg.rst @@ -193,7 +193,7 @@ implementation should work correctly. .. tip:: To see how to implement in-band registration as a Slixmpp plugin, - see the tutorial :ref:`tutorial-create-plugin`. + see the tutorial :ref:`create-plugin`. `View full source (5) <http://github.com/legastero/xmpp-tdg/blob/master/code/CheshiR/RegistrableComponent.py>`_ | `View original code (5) <http://github.com/remko/xmpp-tdg/blob/master/code/CheshiR/RegistrableComponent.py>`_ diff --git a/slixmpp/plugins/xep_0313/mam.py b/slixmpp/plugins/xep_0313/mam.py index 02efd3ce..f49ac637 100644 --- a/slixmpp/plugins/xep_0313/mam.py +++ b/slixmpp/plugins/xep_0313/mam.py @@ -149,6 +149,8 @@ class XEP_0313(BasePlugin): """ Iterate over each message of MAM query. + .. versionadded:: 1.8.0 + :param jid: Entity holding the MAM records :param start: MAM query start time :param end: MAM query end time @@ -239,7 +241,7 @@ class XEP_0313(BasePlugin): async def get_fields(self, jid: Optional[JID] = None, **iqkwargs) -> Form: """Get MAM query fields. - .. versionaddedd:: 1.8.0 + .. versionadded:: 1.8.0 :param jid: JID to retrieve the policy from. :return: The Form of allowed options |