From 0321fa519459f2fd1f2a0ed8b7ef58021c0b8180 Mon Sep 17 00:00:00 2001 From: Michael Morisi Date: Thu, 22 Aug 2024 10:19:25 -0400 Subject: [PATCH] Address technical feedback --- source/connect-to-mongo/stable-api.txt | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/source/connect-to-mongo/stable-api.txt b/source/connect-to-mongo/stable-api.txt index 98a4013..92754be 100644 --- a/source/connect-to-mongo/stable-api.txt +++ b/source/connect-to-mongo/stable-api.txt @@ -28,10 +28,8 @@ In this guide, you can learn how to specify **{+stable-api+}** compatibility whe connecting to a MongoDB deployment. The {+stable-api+} feature forces the server to run operations with behaviors compatible -with the API version you specify. When you update either your driver or server, -the API version changes, which can change the way these operations behave. -Using the {+stable-api+} ensures consistent responses from the server and -provides long-term API stability for your application. +with the API version you specify. Using the {+stable-api+} ensures consistent responses +from the server and provides long-term API stability for your application. The following sections describe how you can enable and customize {+stable-api+} for your MongoDB client. For more information about the {+stable-api+}, including a list of @@ -58,10 +56,9 @@ The following code example shows how to specify {+stable-api+} version 1: :copyable: :dedent: -Once you create a ``MongoClient`` instance with -a specified API version, all commands you run with the client use the specified -version. If you must run commands using more than one version of the -{+stable-api+}, create a new ``MongoClient``. +Once you create a ``MongoClient`` instance with the {+stable-api+}, all commands you +run with the client use the specified {+stable-api+} configuration. If you must run +{+stable-api+} commands using alternative configurations, create a new ``MongoClient``. .. _java-rs-stable-api-options: