From 02c64c8897cd3168bc86a2eab77e1871fe773f43 Mon Sep 17 00:00:00 2001 From: Marius Kittler Date: Wed, 8 Nov 2023 13:01:05 +0100 Subject: [PATCH] Fix typo in docstring --- lmdb-typed.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lmdb-typed.hh b/lmdb-typed.hh index 94d70a1..6d6165d 100644 --- a/lmdb-typed.hh +++ b/lmdb-typed.hh @@ -111,7 +111,7 @@ template <> inline void serFromString<>(string_view str, std::uint64_t &ret) /*! * \brief Converts \a t to an std::string. * - * This is the serialization interface for keys. You need to define your this function + * This is the serialization interface for keys. You need to define this function * for the types you'd like to use as keys. */ template inline std::string keyConv(const T &t);