Skip to content

Commit 0ee6e4d

Browse files
committed
Fix typos
Found via `codespell -S po,flatpak,.git`
1 parent f649ea6 commit 0ee6e4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

REMINDERS_SERVICE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object: /io/github/remindersdevs/Reminders/Service
77

88
Currently this is only packaged with Reminders and anyone who wants to use it will have to have the full Reminders app installed. The reason this exists is to allow integrating the Reminders app with desktop environments through extensions.
99

10-
At some point I might seperate this from Reminders and offer it as a standalone library, but until then you probably shouldn't use it if you are making your own reminder app.
10+
At some point I might separate this from Reminders and offer it as a standalone library, but until then you probably shouldn't use it if you are making your own reminder app.
1111

1212
This service will have some breaking changes made to it at times, so make sure you use the GetVersion method to check that the right version is installed.
1313

src/service/caldav.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def incomplete_task(self, user_id, task_list, task_id):
232232
try:
233233
calendar = self.principals[user_id].calendar(cal_id=task_list)
234234
todo = calendar.object_by_uid(task_id, comp_class=Todo)
235-
todo.uncomplete()
235+
todo.incomplete()
236236
except HTTPError as error:
237237
if error.response.status_code == 503:
238238
raise error

0 commit comments

Comments
 (0)