Merge branch 'Docstring_Typo' of https://github.com/tajmone/evennia into tajmone-Docstring_Typo

This commit is contained in:
Griatch 2015-04-17 11:29:35 +02:00
commit bd021c346f

View file

@ -130,7 +130,7 @@ class DefaultObject(ObjectDB):
It is recommended to create children of this class using the It is recommended to create children of this class using the
`evennia.create_object()` function rather than to initialize the class `evennia.create_object()` function rather than to initialize the class
directly - this will both set things up and efficiently save the object directly - this will both set things up and efficiently save the object
without obj.save() having to be called explicitly. without `obj.save()` having to be called explicitly.
""" """
# typeclass setup # typeclass setup
@ -1149,8 +1149,8 @@ class DefaultObject(ObjectDB):
normally by calling normally by calling
`traversing_object.move_to(target_location)`. It is normally `traversing_object.move_to(target_location)`. It is normally
only implemented by Exit objects. If it returns False (usually only implemented by Exit objects. If it returns False (usually
because move_to returned False), at_after_traverse below because `move_to` returned False), `at_after_traverse` below
should not be called and instead at_failed_traverse should be should not be called and instead `at_failed_traverse` should be
called. called.
Args: Args:
@ -1500,7 +1500,7 @@ class DefaultExit(DefaultObject):
exit's name, triggering the movement between rooms. exit's name, triggering the movement between rooms.
Args: Args:
exiddobj (Object): The DefaultExit object to base the command on. exidbobj (Object): The DefaultExit object to base the command on.
""" """
@ -1549,7 +1549,7 @@ class DefaultExit(DefaultObject):
command handler. If changes need to be done on the fly to the command handler. If changes need to be done on the fly to the
cmdset before passing them on to the cmdhandler, this is the cmdset before passing them on to the cmdhandler, this is the
place to do it. This is called also if the object currently place to do it. This is called also if the object currently
have no cmdsets. has no cmdsets.
Kwargs: Kwargs:
force_init (bool): If `True`, force a re-build of the cmdset force_init (bool): If `True`, force a re-build of the cmdset