We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 383e1ab + 2b1f468 commit a03ddbcCopy full SHA for a03ddbc
source/tutorial/collation.txt
@@ -206,7 +206,7 @@ specify a collation.
206
$collection = (new MongoDB\Client)->test->names;
207
208
$document = $collection->findOneAndUpdate(
209
- ['first_name' => ['$lt' =-> 'Gunter']],
+ ['first_name' => ['$lt' => 'Gunter']],
210
['$set' => ['verified' => true]]
211
);
212
@@ -231,7 +231,7 @@ specified, which uses the locale ``de@collation=phonebook``.
231
232
233
234
235
['$set' => ['verified' => true]],
236
[
237
'collation' => ['locale' => 'de@collation=phonebook'],
0 commit comments