From b6a3a946ea1acf20291db145669b9e7c0cc0d4ab Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 7 Dec 2019 22:20:46 +1100 Subject: [PATCH] Fix simple typo: overidden -> overridden There is a small typo in doc/examples/authentication.rst. Should read overridden rather than overidden. --- doc/examples/authentication.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/authentication.rst b/doc/examples/authentication.rst index 4a0b352554..dabf06957a 100644 --- a/doc/examples/authentication.rst +++ b/doc/examples/authentication.rst @@ -32,7 +32,7 @@ SCRAM-SHA-256 (RFC 7677) SCRAM-SHA-256 is the default authentication mechanism supported by a cluster configured for authentication with MongoDB 4.0 or later. Authentication requires a username, a password, and a database name. The default database -name is "admin", this can be overidden with the ``authSource`` option. +name is "admin", this can be overridden with the ``authSource`` option. Credentials can be specified as arguments to :class:`~pymongo.mongo_client.MongoClient`:: @@ -55,7 +55,7 @@ SCRAM-SHA-1 (RFC 5802) SCRAM-SHA-1 is the default authentication mechanism supported by a cluster configured for authentication with MongoDB 3.0 or later. Authentication requires a username, a password, and a database name. The default database -name is "admin", this can be overidden with the ``authSource`` option. +name is "admin", this can be overridden with the ``authSource`` option. Credentials can be specified as arguments to :class:`~pymongo.mongo_client.MongoClient`::