Skip to content

Commit

Permalink
Fix grammatical errors for readability (ics-py#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
azh412 authored Nov 26, 2023
1 parent 237a087 commit e217aae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ with the excellent help of `Niko Fink <https://github.com/N-Coder>`_.
Other contributors, listed alphabetically, are:

* `@aureooms <https://github.com/aureooms>`_
* `@azh412 <https://github.com/azh412>`_
* `@Azhrei <https://github.com/Azhrei>`_
* `@ConnyOnny <https://github.com/ConnyOnny>`_
* `@danieltellez <https://github.com/danieltellez>`_
Expand Down
6 changes: 3 additions & 3 deletions src/ics/icalendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class CalendarAttrs(Component):

class Calendar(CalendarAttrs):
"""
Represents an unique RFC 5545 iCalendar.
Represents a unique RFC 5545 iCalendar.
Attributes:
Expand Down Expand Up @@ -110,8 +110,8 @@ def creator(self, value: str):
@classmethod
def parse_multiple(cls, string):
""" "
Parses an input string that may contain mutiple calendars
and retruns a list of :class:`ics.event.Calendar`
Parses an input string that may contain multiple calendars
and returns a list of :class:`ics.event.Calendar`
"""
containers = string_to_containers(string)
return [cls(imports=c) for c in containers]
Expand Down

0 comments on commit e217aae

Please sign in to comment.