0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 12:48:54 +02:00

ircd:Ⓜ️:vm: Proper doc comments for commit opts.

This commit is contained in:
Jason Volk 2018-05-11 21:07:53 -07:00
parent 9136088f26
commit 6379c215bd

View file

@ -215,19 +215,19 @@ struct ircd::m::vm::opts
struct ircd::m::vm::copts struct ircd::m::vm::copts
:opts :opts
{ {
// Hash and include hashes object. /// Hash and include hashes object.
bool hash {true}; bool hash {true};
// Sign and include signatures object /// Sign and include signatures object
bool sign {true}; bool sign {true};
// Generate and include event_id /// Generate and include event_id
bool event_id {true}; bool event_id {true};
// Include our origin /// Include our origin
bool origin {true}; bool origin {true};
// Include origin_server_ts /// Include origin_server_ts
bool origin_server_ts {true}; bool origin_server_ts {true};
/// Whether to log a debug message before commit /// Whether to log a debug message before commit