diff --git a/evennia/accounts/accounts.py b/evennia/accounts/accounts.py index af0050ec9d..397ea287b6 100644 --- a/evennia/accounts/accounts.py +++ b/evennia/accounts/accounts.py @@ -4,7 +4,7 @@ Typeclass for Account objects Note that this object is primarily intended to store OOC information, not game info! This object represents the actual user (not their -character) and has NO actual precence in the +character) and has NO actual presence in the game world (this is handled by the associated character object, so you should customize that instead for most things). diff --git a/evennia/typeclasses/attributes.py b/evennia/typeclasses/attributes.py index 2cb7ac8843..6fb4870dae 100644 --- a/evennia/typeclasses/attributes.py +++ b/evennia/typeclasses/attributes.py @@ -59,7 +59,7 @@ class Attribute(SharedMemoryModel): # Attribute Database Model setup # # These database fields are all set using their corresponding properties, - # named same as the field, but withtout the db_* prefix. + # named same as the field, but without the db_* prefix. db_key = models.CharField("key", max_length=255, db_index=True) db_value = PickledObjectField( "value",