Commit 5b548c28 authored by Dominik Charousset's avatar Dominik Charousset

Fix documentation of put_missing

parent 613f515f
......@@ -81,8 +81,8 @@ config_value& put(settings& dict, string_view key, T&& value) {
return put_impl(dict, key, tmp);
}
/// Converts `value` to a `config_value` and assigns it to `key` if `value` is
/// currently missing in `xs`.
/// Converts `value` to a `config_value` and assigns it to `key` unless `xs`
/// already contains `key` (does nothing in this case).
/// @param xs Dictionary of key-value pairs.
/// @param key Human-readable nested keys in the form `category.key`.
/// @param value New value for given `key`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment