@@ -227,7 +227,7 @@ Using the `.ref` macro, you can:
227227
228228You can freely combine all the above constructs into more deeply nested references.
229229For more examples, see the Scaladoc of the ` .ref ` macro or
230- [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/src/test/scala/com/avsystem/commons/mongo/typed/MongoRefTest.scala ) .
230+ [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/jvm/ src/test/scala/com/avsystem/commons/mongo/typed/MongoRefTest.scala ) .
231231
232232** NOTE** : some of the above references (e.g. unwrapping optional fields or narrowing sealed hierarchies) introduce
233233an _ implied filter_ that is automatically included into the query if this reference is used in a MongoDB query document
@@ -247,7 +247,7 @@ val query: MongoDocumentFilter[MyEntity] =
247247```
248248
249249For more examples, see the Scaladoc or
250- [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/src/test/scala/com/avsystem/commons/mongo/typed/MongoFilterTest.scala ) .
250+ [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/jvm/ src/test/scala/com/avsystem/commons/mongo/typed/MongoFilterTest.scala ) .
251251
252252#### Unsupported operators
253253
@@ -273,7 +273,7 @@ in the response of a query. It is usually one of:
273273* An arbitrary combination of projections into a tuple, e.g. ` MongoProjection.zip(MyEntity.ref(_.int), MyEntity.ref(_.data)) `
274274
275275For more examples, see the Scaladoc or
276- [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/src/test/scala/com/avsystem/commons/mongo/typed/MongoProjectionTest.scala ) .
276+ [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/jvm/ src/test/scala/com/avsystem/commons/mongo/typed/MongoProjectionTest.scala ) .
277277
278278### ` MongoDocumentOrder `
279279
@@ -284,7 +284,7 @@ A `MongoDocumentOrder[E]` represents a sort order for a document of type `E`. It
284284* Multi-field order, e.g. ` MongoDocumentOrder(MyEntity.ref(_.int) -> true, MyEntity.ref(_.data.number) -> false) `
285285
286286For more examples, see the Scaladoc or
287- [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/src/test/scala/com/avsystem/commons/mongo/typed/MongoOrderTest.scala ) .
287+ [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/jvm/ src/test/scala/com/avsystem/commons/mongo/typed/MongoOrderTest.scala ) .
288288
289289### ` MongoDocumentUpdate `
290290
@@ -296,7 +296,7 @@ val update: MongoDocumentUpdate[MyEntity] =
296296```
297297
298298For more examples, see the Scaladoc or
299- [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/src/test/scala/com/avsystem/commons/mongo/typed/MongoUpdateTest.scala ) .
299+ [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/jvm/ src/test/scala/com/avsystem/commons/mongo/typed/MongoUpdateTest.scala ) .
300300
301301### ` MongoIndex `
302302
@@ -312,7 +312,7 @@ A `MongoIndex[E]` represents a MongoDB index document for an entity of type `E`.
312312 ```
313313
314314For more examples, see the Scaladoc or
315- [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/src/test/scala/com/avsystem/commons/mongo/typed/MongoIndexTest.scala ) .
315+ [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/jvm/ src/test/scala/com/avsystem/commons/mongo/typed/MongoIndexTest.scala ) .
316316
317317## Invoking database commands
318318
@@ -348,7 +348,7 @@ program.runToFuture
348348```
349349
350350For more examples of database operations with ` TypedMongoCollection ` , see
351- [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/src/test/scala/com/avsystem/commons/mongo/typed/TypedMongoCollectionTest.scala ) .
351+ [ tests] ( https://github.com/AVSystem/scala-commons/blob/master/commons-mongo/jvm/ src/test/scala/com/avsystem/commons/mongo/typed/TypedMongoCollectionTest.scala ) .
352352
353353` TypedMongoCollection ` exposes mostly the same operations as Reactive Streams ` MongoCollection ` but typed differently,
354354that is: more precisely and in a more Scala-idiomatic way:
0 commit comments