diff options
author | 2021-10-09 20:00:48 +0300 | |
---|---|---|
committer | 2021-10-09 20:00:48 +0300 | |
commit | b9c19c9fdeb67b27dce0876ac52978be63adeea5 (patch) | |
tree | 2a7abf67de1cac8422565d0868f143490a810ccd /bot/exts/fun | |
parent | Update bot/exts/fun/uwu.py (diff) |
Update bot/exts/fun/uwu.py
Co-authored-by: Bluenix <[email protected]>
Diffstat (limited to 'bot/exts/fun')
-rw-r--r-- | bot/exts/fun/uwu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py index 4ad19c82..ff6247b0 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -68,7 +68,7 @@ class Uwu(Cog): return input_string def _char_replace(self, input_string: str) -> str: - """Replaces characters with 'w'.""" + """Replace certain characters with 'w'.""" return REGEX_WORD_REPLACE.sub("w", input_string) def _stutter(self, strength: float, input_string: str) -> str: |