diff --git a/jrnl/journals/DayOneJournal.py b/jrnl/journals/DayOneJournal.py index ace6a5f4..e12c22c8 100644 --- a/jrnl/journals/DayOneJournal.py +++ b/jrnl/journals/DayOneJournal.py @@ -166,7 +166,7 @@ class DayOne(Journal): def editable_str(self) -> str: """Turns the journal into a string of entries that can be edited - manually and later be parsed with eslf.parse_editable_str.""" + manually and later be parsed with self.parse_editable_str.""" return "\n".join([f"{str(e)}\n# {e.uuid}\n" for e in self.entries]) def _update_old_entry(self, entry: Entry, new_entry: Entry) -> None: diff --git a/jrnl/journals/Journal.py b/jrnl/journals/Journal.py index d1054814..f5365fb4 100644 --- a/jrnl/journals/Journal.py +++ b/jrnl/journals/Journal.py @@ -224,7 +224,7 @@ class Journal: @property def tags(self) -> list[Tag]: - """Returns a set of tuples (count, tag) for all tags present in the journal.""" + """Returns a list of Tag instances enumerating all the tags present in the journal.""" # Astute reader: should the following line leave you as puzzled as me the first # time I came across this construction, worry not and embrace the ensuing moment # of enlightment.