diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2024-05-26 13:59:25 +0300 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2024-06-01 17:30:16 +0300 |
| commit | 626b16a8f1adb71d5b5e3f9f0a3a4f369a6fbed4 (patch) | |
| tree | 3199bc8de7f39fe163a769be7d495406a3844f99 /lib | |
| parent | e3ab780413e589b19e2d7324832666dbb93ef966 (diff) | |
mu-config: cosmetic
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mu-config.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mu-config.hh b/lib/mu-config.hh index 17924c7..eaa0cd9 100644 --- a/lib/mu-config.hh +++ b/lib/mu-config.hh @@ -102,7 +102,7 @@ public: Flags::Configurable, "batch-size", "50000", - "Number of changes in a database transaction" + "Maximum number of changes in a database transaction" }, { Id::Contacts, @@ -216,7 +216,7 @@ public: */ static Option<const Property&> property(const std::string& name) { const auto pname{std::string_view(name.data(), name.size())}; - for(auto&& prop: properties) + for (auto&& prop: properties) if (prop.name == pname) return prop; return Nothing; |
