diff --git a/source/security/auth-mechanisms/scram.txt b/source/security/auth-mechanisms/scram.txt index 48d6262a..a48aca57 100644 --- a/source/security/auth-mechanisms/scram.txt +++ b/source/security/auth-mechanisms/scram.txt @@ -49,8 +49,8 @@ The code examples on this page use the following placeholders: to a MongoDB Atlas cluster. To learn more about the ``+srv`` option, see :manual:`Connection String Formats ` in the {+mdb-server+} manual. -- ````: The MongoDB username of the user to authenticate. -- ````: The MongoDB password of the user to authenticate. +- ````: The MongoDB username of the user to authenticate. +- ````: The MongoDB password of the user to authenticate. - ````: The network address of your MongoDB deployment. - ````: The port number of your MongoDB deployment. If you omit this parameter, the driver uses the default port number (``27017``). You don't need a port number @@ -78,7 +78,7 @@ see the corresponding syntax: .. code-block:: ruby - client = Mongo::Client.new('mongodb[+srv]://:@[:]/?authSource=') + client = Mongo::Client.new('mongodb[+srv]://:@[:]/?authSource=') .. tab:: Client Options :tabid: default-mongo-credential @@ -86,8 +86,8 @@ see the corresponding syntax: .. code-block:: ruby client = Mongo::Client.new('', - user: '', - password: '') + user: '', + password: '') API Documentation -----------------