From b056571b493a40aabfea0fd1717f41549b2e8bc2 Mon Sep 17 00:00:00 2001 From: rustagir Date: Tue, 14 Jan 2025 11:11:52 -0500 Subject: [PATCH] fixes --- source/fundamentals/builders/builders-data-classes.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/fundamentals/builders/builders-data-classes.txt b/source/fundamentals/builders/builders-data-classes.txt index 00564744..ef39fa6f 100644 --- a/source/fundamentals/builders/builders-data-classes.txt +++ b/source/fundamentals/builders/builders-data-classes.txt @@ -33,7 +33,7 @@ interoperability. .. note:: This page provides a limited number of code - examples to demonstrate this functionality. To view examples for all of + examples to demonstrate this functionality. To view examples for all the builder classes, see the :ref:`kotlin-builders-landing` guides. Add {+language+} Extensions to Your Project @@ -77,9 +77,9 @@ dependency to your project by using the :guilabel:`Gradle` and After you install the extensions dependency, you can use the extension methods by importing classes and methods from the -``com.mongodb.kotlin.client.model`` path. The standard builder classes -and methods are accessible from the ``com.mongodb.client.model`` path, -which allows you to mix calls that reference string field names and data +``com.mongodb.kotlin.client.model`` path. You can access the standard +builder classes and methods from the ``com.mongodb.client.model`` path, +so you can mix calls that reference string field names and data class properties in the same application. Builders Examples