1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

lib:smbconf: Fix code spelling

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
This commit is contained in:
Andreas Schneider 2023-04-13 12:54:21 +02:00 committed by Andreas Schneider
parent 8d647f2f7c
commit 189f156c8c
2 changed files with 5 additions and 5 deletions

View File

@ -602,12 +602,12 @@ PyDoc_STRVAR(obj_drop_doc,
PyDoc_STRVAR(obj_set_parameter_doc,
"set_parameter(str, str, str) -> None\n"
"Set a configuration parmeter. Specify service name, parameter name,\n"
"Set a configuration parameter. Specify service name, parameter name,\n"
"and parameter value.\n");
PyDoc_STRVAR(obj_set_global_parameter_doc,
"set_global_parameter(str, str) -> None\n"
"Set a global configuration parmeter. Specify the parameter name\n"
"Set a global configuration parameter. Specify the parameter name\n"
"and parameter value.\n");
PyDoc_STRVAR(obj_delete_share_doc,

View File

@ -275,7 +275,7 @@ sbcErr smbconf_set_parameter(struct smbconf_ctx *ctx,
* @brief Set a global configuration parameter to the value provided.
*
* This adds a paramet in the [global] service. It also creates [global] if it
* does't exist.
* doesn't exist.
*
* @param[in] ctx The smbconf context to use.
*
@ -314,7 +314,7 @@ sbcErr smbconf_get_parameter(struct smbconf_ctx *ctx,
/**
* @brief Get the value of a global configuration parameter as a string.
*
* It also creates [global] if it does't exist.
* It also creates [global] if it doesn't exist.
*
* @param[in] ctx The smbconf context to use.
*
@ -350,7 +350,7 @@ sbcErr smbconf_delete_parameter(struct smbconf_ctx *ctx,
/**
* @brief Delete a global parameter from the configuration.
*
* It also creates [global] if it does't exist.
* It also creates [global] if it doesn't exist.
*
* @param[in] ctx The smbconf context to use.
*