Spell fix
[webcomics.git] / comicsporn / models.py
index e162d0447e8a5383b4c9fc7c3ab930856c56a82c..377473fc7fd437361b6da219fed1033dea639a72 100644 (file)
@@ -32,7 +32,7 @@ class UserProfile(models.Model):
        is_author = models.BooleanField()
        """ 
         The main difference is that the author have is own ads publisher
-        The default behaviour of class inheritance is to create OnetoOne relationship between parent and child 
+        The default behavior of class inheritance is to create OnetoOne relationship between parent and child 
         TODO: Which fields are required to interact with the ads publisher ?
         """
        ADS_PUBLISHER_CHOICES = (
@@ -52,7 +52,7 @@ class Comic_block(models.Model):
        """
        Let's view a comics as an images serie
        """
-       name = models.CharField(_('name'), max_length=50) # probably not useful, it's just simplier to assemble afterwards for author
+       name = models.CharField(_('name'), max_length=50)  # probably not useful, it's just simplier to assemble afterwards for author
        number = models.IntegerField(_('number'))
        content = models.ImageField(upload_to='block_contents')
        # TODO: probably not useful