Skip to content

Commit bd86254

Browse files
committed
fixes for doc generation
1 parent 1c16029 commit bd86254

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

include/session/config/base.hpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ class ConfigBase : public ConfigSig {
655655
/// - `value` -- replaces current value with given string view
656656
void operator=(std::string_view value) { *this = std::string{value}; }
657657

658-
/// API: base/ConfigBase::DictFieldProxy::operator=(std::span<const unsigned char>)
658+
/// API: base/ConfigBase::DictFieldProxy::operator=(std::span)
659659
///
660660
/// Replaces the current value with the given std::span<const unsigned char>. This also
661661
/// auto-vivifies any intermediate dicts needed to reach the given key, including replacing
@@ -1253,6 +1253,8 @@ class ConfigBase : public ConfigSig {
12531253

12541254
/// API: base/ConfigBase::MULTIPART_MAX_WAIT
12551255
///
1256+
/// Member variable
1257+
///
12561258
/// This value controls how long we will store incomplete multipart messages since the last part
12571259
/// of such a message that we received, in the hopes of getting the rest of the parts soon. The
12581260
/// default is a week: although long, this allows for extended downtime of a multidevice client
@@ -1267,6 +1269,8 @@ class ConfigBase : public ConfigSig {
12671269

12681270
/// API: base/ConfigBase::MULTIPART_MAX_REMEMBER
12691271
///
1272+
/// Member variable
1273+
///
12701274
/// This value controls how long we retain the hashes of *completed* multipart config sets (so
12711275
/// that we can know to ignore duplicate message parts of messages we have already processed).
12721276
///

include/session/config/encrypt.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ void encrypt_inplace(
5757

5858
/// API: encrypt/ENCRYPT_DATA_OVERHEAD
5959
///
60+
/// Member variable
61+
///
6062
/// This value contains the constant amount of extra bytes required for encryption as performed by
6163
/// `encrypt()`/`decrypt()`/`encrypt_inplace()`/`decrypt_inplace()`.
6264
///

0 commit comments

Comments
 (0)