From 9837bb0d10466332b486ceb958ba30dc431440d7 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Mon, 27 Jun 2011 14:58:52 +0300 Subject: Minor typos in the examples --- doc/examples/examples.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc') 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. -- cgit