diff options
author | 2022-02-25 00:16:25 +0200 | |
---|---|---|
committer | 2022-02-25 00:16:25 +0200 | |
commit | 1358a251ebea34db6704495b6fd39e81be649b5c (patch) | |
tree | 42bb16c5dbac8dcebcf38678d7475e86e0935664 /bot | |
parent | Update bot/exts/fun/uwu.py (diff) |
Fixed docstring.
Diffstat (limited to 'bot')
-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 a88a8689..4340a162 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -81,7 +81,7 @@ class Uwu(Cog): return match_string def _nyaify(self, input_string: str) -> str: - """Nyaifies a string.""" + """Nyaifies a string by adding a 'y' between an 'n' and a vowel.""" return REGEX_NYA.sub(SUBSTITUTE_NYA, input_string, 0) def _emoji(self, strength: float, input_string: str) -> str: |