Skip to content

Commit 8329eea

Browse files
Fix typos
Co-authored-by: Johannes Christ <jc@jchri.st>
1 parent 6b8a874 commit 8329eea

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

bot/converters.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -576,12 +576,12 @@ async def convert(self, ctx: Context, arg: str) -> t.Optional[dict]:
576576

577577
class DayDuration(Converter):
578578
"""
579-
Convert a string representing day time (hours and minutes) to an UTC datetime object.
579+
Convert a string representing day time (hours and minutes) to a UTC datetime object.
580580
581-
The hours and mintues would be combined with UTC day, if no 'am' or 'pm' is passed with
581+
The hours and minutes would be combined with UTC day if no 'am' or 'pm' is passed with
582582
the string, then it is assumed that the time is in 24 hour format.
583583
584-
The following formats are excepted:
584+
The following formats are accepted:
585585
- H:M
586586
- H:M am/pm
587587
- H am/pm

bot/exts/moderation/modpings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async def reschedule_modpings_schedule(self) -> None:
9090
mod = await get_or_fetch_member(guild, mod_id)
9191
if not mod:
9292
log.info(
93-
f"I tried to get moderator with ID `{mod_id}`, but they don't appear to be on the server :pensive:"
93+
f"I tried to get moderator with ID `{mod_id}`, but they don't appear to be on the server 😔"
9494
)
9595
continue
9696

@@ -218,7 +218,7 @@ async def on_command(self, ctx: Context) -> None:
218218
@has_any_role(*MODERATION_ROLES)
219219
async def schedule_modpings(self, ctx: Context, start: DayDuration, end: DayDuration) -> None:
220220
"""
221-
Schedule modpings role to be added at <start> and removed at <end> everyday at UTC time!
221+
Schedule modpings role to be added at <start> and removed at <end> every day at UTC!
222222
223223
You can have the modpings role off for a maximum of 16 hours i.e. having the modpings role
224224
on for a minimum of 8 hours in a day.

0 commit comments

Comments
 (0)