Some typos

This commit is contained in:
Raúl Marín 2024-11-11 14:34:53 +01:00
parent 9cb78214fa
commit 356393b488
2 changed files with 3 additions and 3 deletions

View File

@ -397,7 +397,7 @@ SettingsConstraints::Checker SettingsConstraints::getChecker(const Settings & cu
/** The `readonly` value is understood as follows: /** The `readonly` value is understood as follows:
* 0 - no read-only restrictions. * 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. * 2 - only read requests, as well as changing settings, except for the `readonly` setting.
*/ */

View File

@ -40,7 +40,7 @@ class AccessControl;
* <const/> * <const/>
* </force_index_by_date> * </force_index_by_date>
* <max_threads> * <max_threads>
* <changable_in_readonly/> * <changeable_in_readonly/>
* </max_threads> * </max_threads>
* </constraints> * </constraints>
* </user_profile> * </user_profile>
@ -50,7 +50,7 @@ class AccessControl;
* If a setting cannot be change due to the read-only mode this class throws an exception. * 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: * The value of `readonly` is understood as follows:
* 0 - not read-only mode, no additional checks. * 0 - not read-only mode, no additional checks.
* 1 - only read queries, as well as changing settings with <changable_in_readonly/> flag. * 1 - only read queries, as well as changing settings with <changeable_in_readonly/> flag.
* 2 - only read queries and you can change the settings, except for the `readonly` setting. * 2 - only read queries and you can change the settings, except for the `readonly` setting.
* *
*/ */