From: Joseph Sutton Date: Thu, 8 Jun 2023 01:44:59 +0000 (+1200) Subject: samba-tool: Fix typo X-Git-Tag: talloc-2.4.1~398 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0743e11d4658b3efe6687b20d6d424de70368999;p=thirdparty%2Fsamba.git samba-tool: Fix typo Found by Rob van der Linde . Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/docs-xml/manpages/samba-tool.8.xml b/docs-xml/manpages/samba-tool.8.xml index 0834f606659..910d9093771 100644 --- a/docs-xml/manpages/samba-tool.8.xml +++ b/docs-xml/manpages/samba-tool.8.xml @@ -1546,7 +1546,7 @@ --force-subtree-delete - Delete organizational unit and all children reclusively. + Delete organizational unit and all children recursively. diff --git a/python/samba/netcmd/ou.py b/python/samba/netcmd/ou.py index d83920d9862..8236a7c22e3 100644 --- a/python/samba/netcmd/ou.py +++ b/python/samba/netcmd/ou.py @@ -361,7 +361,7 @@ class cmd_delete(Command): type=str, metavar="URL", dest="H"), Option("--force-subtree-delete", dest="force_subtree_delete", default=False, action='store_true', - help="Delete organizational unit and all children reclusively"), + help="Delete organizational unit and all children recursively"), ] takes_args = ["ou_dn"]