PYTHON-4218 Update links to change-streams specification (#1525)

This commit is contained in:
Steven Silvester 2024-02-16 08:37:03 -06:00 committed by GitHub
parent ebb94b669e
commit 158e6c6574
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -2869,7 +2869,7 @@ class Collection(common.BaseObject, Generic[_DocumentType]):
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/changeStreams/>`_.
.. _change streams specification:
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md
"""
return CollectionChangeStream(
self,

View File

@ -660,7 +660,7 @@ class Database(common.BaseObject, Generic[_DocumentType]):
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/changeStreams/>`_.
.. _change streams specification:
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md
"""
return DatabaseChangeStream(
self,

View File

@ -1027,7 +1027,7 @@ class MongoClient(common.BaseObject, Generic[_DocumentType]):
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/changeStreams/>`_.
.. _change streams specification:
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md
"""
return ClusterChangeStream(
self.admin,