Skip to content

Commit

Permalink
chore: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Oct 3, 2023
1 parent f169474 commit d8ca339
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions plone/app/discussion/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ def addComment(self, comment):
self._children[reply_to].insert(id)

# Add the annotation if not already done
annotions = IAnnotations(self.__parent__)
if ANNOTATION_KEY not in annotions:
annotions[ANNOTATION_KEY] = aq_base(self)
annotations = IAnnotations(self.__parent__)
if ANNOTATION_KEY not in annotations:
annotations[ANNOTATION_KEY] = aq_base(self)

# Notify that the object is added. The object must here be
# acquisition wrapped or the indexing will fail.
Expand Down
2 changes: 1 addition & 1 deletion plone/app/discussion/design.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ can be generated from this as well, using the helper class in
plone.app.registry.

Note that some settings, notably those to do with permissions and workflow,
will need to be wired up as custom form fields with custom data mangers
will need to be wired up as custom form fields with custom data managers
or similar.

Workflow and permissions
Expand Down

0 comments on commit d8ca339

Please sign in to comment.