Skip to content

Commit a5d5f83

Browse files
committed
JS PR fixes 1
1 parent 5f1caf0 commit a5d5f83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/fundamentals/linq.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ The ``Convert()`` method takes the following parameters:
623623

624624
- Value to convert.
625625
- ``ConvertOptions<Tto>`` instance that specifies the type to convert to
626-
and options. Some conversions require certain options to be set, but
626+
and options. Some conversions require you to specify certain options, but
627627
you can also set options to handle errors or null values.
628628

629629
The following code converts the ``RestaurantId`` string values to
@@ -634,8 +634,8 @@ The following code converts the ``RestaurantId`` string values to
634634
var query = queryableCollection
635635
.Select(r => Mql.Convert(r.RestaurantId, new ConvertOptions<int>()));
636636

637-
The converted values in the output documents are stored under the original
638-
field name.
637+
The driver stores the converted values under the original field name in
638+
the output documents.
639639

640640
$lookup
641641
~~~~~~~

0 commit comments

Comments
 (0)