diff --git a/lib/smbconf/pysmbconf.c b/lib/smbconf/pysmbconf.c index 465876684ca..20041d3a580 100644 --- a/lib/smbconf/pysmbconf.c +++ b/lib/smbconf/pysmbconf.c @@ -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, diff --git a/lib/smbconf/smbconf.h b/lib/smbconf/smbconf.h index 1804cb5905a..e5f138fd98b 100644 --- a/lib/smbconf/smbconf.h +++ b/lib/smbconf/smbconf.h @@ -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. *