From 736d618310fe43210fd1e1a3a91ec7c80f5ffdcb Mon Sep 17 00:00:00 2001 From: Ivan “CLOVIS” Canet Date: Thu, 13 Aug 2026 15:48:44 +0000 Subject: [PATCH] docs(bson): Fix broken links --- bson/README.md | 2 +- bson/src/commonMain/kotlin/BsonFactory.kt | 2 -- 2 file(s) changed, 1 insertion(s)(+), 3 deletion(s)(-) diff --git a/bson/README.md b/bson/README.md --- a/bson/README.md +++ b/bson/README.md @@ -20,7 +20,7 @@ Utilities and primitives to read and write BSON documents. -[`Bson`][opensavvy.ktmongo.bson.Bson] and [`BsonArray`][opensavvy.ktmongo.bson.BsonArray] respectively represent BSON documents and arrays. +[`BsonDocument`][opensavvy.ktmongo.bson.BsonDocument] and [`BsonArray`][opensavvy.ktmongo.bson.BsonArray] respectively represent BSON documents and arrays. [`BsonFactory`][opensavvy.ktmongo.bson.BsonFactory] is the entry point to create new BSON documents. diff --git a/bson/src/commonMain/kotlin/BsonFactory.kt b/bson/src/commonMain/kotlin/BsonFactory.kt --- a/bson/src/commonMain/kotlin/BsonFactory.kt +++ b/bson/src/commonMain/kotlin/BsonFactory.kt @@ -221,8 +221,6 @@ /** * Instantiates a new [BSON array][BsonArray] by reading its [bytes] representation. - * - * The reverse operation is available as [BsonArray.toByteArray]. */ @LowLevelApi fun readArray(bytes: ByteArray): BsonArray -- tangled.sh