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.
1 parent 105e728 commit 18c4050Copy full SHA for 18c4050
docs/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