From 356393b4888442e38ed6089633fd8b8fa8cd75e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Mon, 11 Nov 2024 14:34:53 +0100 Subject: [PATCH] Some typos --- src/Access/SettingsConstraints.cpp | 2 +- src/Access/SettingsConstraints.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Access/SettingsConstraints.cpp b/src/Access/SettingsConstraints.cpp index cdf3dac192e..7ab0cf8cc26 100644 --- a/src/Access/SettingsConstraints.cpp +++ b/src/Access/SettingsConstraints.cpp @@ -397,7 +397,7 @@ SettingsConstraints::Checker SettingsConstraints::getChecker(const Settings & cu /** The `readonly` value is understood as follows: * 0 - no read-only restrictions. - * 1 - only read requests, as well as changing settings with `changable_in_readonly` flag. + * 1 - only read requests, as well as changing settings with `changeable_in_readonly` flag. * 2 - only read requests, as well as changing settings, except for the `readonly` setting. */ diff --git a/src/Access/SettingsConstraints.h b/src/Access/SettingsConstraints.h index 5bbff86ff61..f5e4335252c 100644 --- a/src/Access/SettingsConstraints.h +++ b/src/Access/SettingsConstraints.h @@ -40,7 +40,7 @@ class AccessControl; * * * - * + * * * * @@ -50,7 +50,7 @@ class AccessControl; * If a setting cannot be change due to the read-only mode this class throws an exception. * The value of `readonly` is understood as follows: * 0 - not read-only mode, no additional checks. - * 1 - only read queries, as well as changing settings with flag. + * 1 - only read queries, as well as changing settings with flag. * 2 - only read queries and you can change the settings, except for the `readonly` setting. * */