@@ -11,7 +11,7 @@ def has_object_permission(self, request, view, obj=None):
 
 
 class PostAuthorCanEditPermission(SafeMethodsOnlyPermission):
-    """Allow everyone to list or view, but only the other can modify existing instances"""
+    """Allow everyone to list or view, but only the author can modify existing instances"""
     def has_object_permission(self, request, view, obj=None):
         if obj is None:
             # Either a list or a create, so no author