Skip to content

Commit 57a41f5

Browse files
committed
BD tech review comments 1
1 parent 34a07e3 commit 57a41f5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

source/fundamentals/serialization.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ enhances speed and reduces memory usage.
220220
arrays.
221221

222222
You can effect these performance improvements by storing the following
223-
primitive types in ``Memory<T>`` or ``ReadOnlyMemory<T>`` objects:
223+
primitive types in ``Memory<T>`` or ``ReadOnlyMemory<T>`` structs:
224224

225225
- ``bool``
226226
- ``sbyte``
@@ -261,9 +261,9 @@ represented in MongoDB:
261261
:ref:`csharp-atlas-vector-search` involves creating and querying
262262
large numerical arrays. If your application uses
263263
{+vector-search+}, you might benefit from the performance
264-
improvements from using ``Memory`` and ``ReadOnlyMemory`` to model
265-
vector data. To learn more, see :ref:`csharp-supported-vector-types`
266-
in the {+vector-search+} guide.
264+
improvements from using ``Memory`` and ``ReadOnlyMemory`` to store
265+
array representations of embeddings and query vectors. To learn more,
266+
see :ref:`csharp-supported-vector-types` in the {+vector-search+} guide.
267267

268268
Additional Information
269269
----------------------

source/includes/fundamentals/code-examples/MemorySerialization.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
public class Program
66
{
7-
87
public static void Main(string[] args)
98
{
109
// Replace with your connection string

0 commit comments

Comments
 (0)