From d97fa30795f83e57a3b1c62505248fec9f29a7f1 Mon Sep 17 00:00:00 2001
From: Niels Lohmann <mail@nlohmann.me>
Date: Thu, 25 Oct 2018 22:29:27 +0200
Subject: [PATCH] :ok_hand: fixed comment #1320

---
 test/src/fuzzer-parse_bson.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/src/fuzzer-parse_bson.cpp b/test/src/fuzzer-parse_bson.cpp
index 1d933767..86b9f176 100644
--- a/test/src/fuzzer-parse_bson.cpp
+++ b/test/src/fuzzer-parse_bson.cpp
@@ -51,7 +51,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
         }
         catch (const json::parse_error&)
         {
-            // parsing a CBOR serialization must not fail
+            // parsing a BSON serialization must not fail
             assert(false);
         }
     }