diff options
author | Alexander Bokovoy <abokovoy@redhat.com> | 2011-06-27 14:58:52 +0300 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-06-27 23:04:18 -0400 |
commit | 9837bb0d10466332b486ceb958ba30dc431440d7 (patch) | |
tree | d6725b8bbb5a3a3328fe0d195a81a7f5d6e84ce4 /doc | |
parent | 716a25a784b4257ef4928afc18b6cebdb7d15e54 (diff) | |
download | freeipa-9837bb0d10466332b486ceb958ba30dc431440d7.tar.gz freeipa-9837bb0d10466332b486ceb958ba30dc431440d7.tar.xz freeipa-9837bb0d10466332b486ceb958ba30dc431440d7.zip |
Minor typos in the examples
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/examples.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/examples.py b/doc/examples/examples.py index 6711492c7..a969c898b 100644 --- a/doc/examples/examples.py +++ b/doc/examples/examples.py @@ -152,7 +152,7 @@ class exshowuser(Command): # the 'no_display' flag is supported by the Command.output_for_cli # method, but you can always use your own if you plan # to override it - I'll show you how later. - output.Output('result', dict, 'user entry whithout DN'), + output.Output('result', dict, 'user entry without DN'), output.Output('dn', unicode, 'DN of the user entry', ['no_display']), ) @@ -322,7 +322,7 @@ class exuser(Object): # we don't want to damage your user entries - adding, deleting, modifying is a # bit more complicated and will be covered later in this file. -# Methods are automatically associtad with a parent Object based on class +# Methods are automatically associated with a parent Object based on class # names. They can then access their parent Object using self.obj. # Simply said, Methods are just Commands associated with an Object. |