netcmd/group.py: Fix typo.
authorKarolin Seeger <kseeger@samba.org>
Wed, 15 May 2013 16:15:18 +0000 (18:15 +0200)
committerJeremy Allison <jra@samba.org>
Thu, 16 May 2013 04:04:41 +0000 (21:04 -0700)
Signed-off-by: Karolin Seeger <kseeger@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
python/samba/netcmd/group.py

index 4004a7d6c37cafc9a0e8b742a7ebdd2c89ffbaaa..1a24e5f0fa380cc83254738a0a6990db57ac39af 100644 (file)
@@ -173,7 +173,7 @@ Example2 deletes group Group2 from the local server.  The command is run under r
 class cmd_group_add_members(Command):
     """Add members to an AD group.
 
-This command adds one or more members to an existing Active Directory group.  The command accepts one or more group member names seperated by commas.  A group member may be a user or computer account or another Active Directory group.
+This command adds one or more members to an existing Active Directory group. The command accepts one or more group member names separated by commas.  A group member may be a user or computer account or another Active Directory group.
 
 When a member is added to a group the member may inherit permissions and rights from the group.  Likewise, when permission or rights of a group are changed, the changes may reflect in the members through inheritance.
 
@@ -225,7 +225,7 @@ Example2 shows how to add a single user account, User2, to the supergroup AD gro
 class cmd_group_remove_members(Command):
     """Remove members from an AD group.
 
-This command removes one or more members from an existing Active Directory group.  The command accepts one or more group member names seperated by commas.  A group member may be a user or computer account or another Active Directory group that is a member of the group specified on the command.
+This command removes one or more members from an existing Active Directory group.  The command accepts one or more group member names separated by commas.  A group member may be a user or computer account or another Active Directory group that is a member of the group specified on the command.
 
 When a member is removed from a group, inherited permissions and rights will no longer apply to the member.