Skip to content

Commit 4fc915f

Browse files
author
Chris Cho
authored
DOCSP-18841: fix broken links (#163)
* DOCSP-18841: fix broken links
1 parent adfc9c8 commit 4fc915f

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

source/fundamentals/collations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ further refine the ordering and matching behavior.
282282
| `collationMaxVariable() <{+api+}/apidocs/mongodb-driver-core/com/mongodb/client/model/Collation.Builder.html#collationMaxVariable(com.mongodb.client.model.CollationMaxVariable)>`__ API Documentation
283283

284284
* - Strength
285-
- | ICU level of comparison. The default value is "tertiary". For more information on each level, see the `ICU Comparison Levels <https://unicode-org.github.io/icu/userguide/collation/concepts.htmll#comparison-levels>`__.
285+
- | ICU level of comparison. The default value is "tertiary". For more information on each level, see the `ICU Comparison Levels <https://unicode-org.github.io/icu/userguide/collation/concepts.html#comparison-levels>`__.
286286
| `collationStrength() <{+api+}/apidocs/mongodb-driver-core/com/mongodb/client/model/Collation.Builder.html#collationStrength(com.mongodb.client.model.CollationStrength)>`__ API Documentation
287287

288288
* - Normalization

source/fundamentals/enterprise-auth.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ mechanism:
9696
.. include:: /includes/fundamentals/code-snippets/auth-credentials-gssapi.rst
9797

9898

99-
In order to acquire a
99+
In order to acquire a
100100
`Kerberos ticket <https://docs.oracle.com/en/java/javase/11/docs/api/java.security.jgss/javax/security/auth/kerberos/KerberosTicket.html>`__,
101-
the GSSAPI Java libraries require you to specify the realm and Key Distribution
101+
the GSSAPI Java libraries require you to specify the realm and Key Distribution
102102
Center (KDC) system properties. See the sample settings in the following example:
103103

104104
.. code-block:: none
@@ -171,11 +171,11 @@ You may need to specify one or more of the following additional
171171

172172
.. tab::
173173
:tabid: JAVA_SUBJECT_KEY
174-
174+
175175
.. include:: /includes/fundamentals/code-snippets/auth-credentials-gssapi-subject-key.rst
176176

177177
By default, the Java driver caches Kerberos tickets by ``MongoClient`` instance.
178-
If your deployment needs to frequently create and destroy ``MongoClient`` instances,
178+
If your deployment needs to frequently create and destroy ``MongoClient`` instances,
179179
you can change the default Kerberos ticket caching behavior to cache by process
180180
to improve performance.
181181

@@ -194,8 +194,8 @@ to improve performance.
194194
:tabid: MongoCredential
195195

196196
To cache Kerberos tickets by process, you must specify the ``JAVA_SUBJECT_PROVIDER``
197-
mechanism property and provide a
198-
`KerberosSubjectProvider <https://mongodb.github.io/mongo-java-driver/4.2//apidocs/mongodb-driver-core/com/mongodb/KerberosSubjectProvider.html#%3Cinit%3E()>`__
197+
mechanism property and provide a
198+
`KerberosSubjectProvider <https://mongodb.github.io/mongo-java-driver/4.2/apidocs/mongodb-driver-core/com/mongodb/KerberosSubjectProvider.html#%3Cinit%3E()>`__
199199
in your ``MongoCredential`` instance. The code to configure the Java driver to cache Kerberos tickets
200200
by process should resemble the following:
201201

@@ -204,8 +204,8 @@ to improve performance.
204204

205205
.. note::
206206

207-
On Windows, Oracle’s JRE uses `LSA <https://msdn.microsoft.com/en-us/library/windows/desktop/aa378326.aspx>`__
208-
rather than `SSPI <https://msdn.microsoft.com/en-us/library/windows/desktop/aa380493.aspx>`__
207+
On Windows, Oracle’s JRE uses `LSA <https://docs.microsoft.com/en-us/windows/win32/secauthn/lsa-authentication>`__
208+
rather than `SSPI <https://docs.microsoft.com/en-us/windows/win32/secauthn/sspi>`__
209209
in its implementation of GSSAPI which limits interoperability with
210210
Windows Active Directory and implementations of single sign-on. See the
211211
following articles for more information:
@@ -262,7 +262,7 @@ mechanism:
262262

263263
If you specify the ``PLAIN`` mechanism, you cannot assign
264264
``authSource`` to any value other than ``$external``.
265-
265+
266266
Your code to instantiate a ``MongoClient`` should look something like this:
267267

268268
.. code-block:: java

0 commit comments

Comments
 (0)