aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Gintautas Kazlauskas <[email protected]>2022-02-25 00:16:25 +0200
committerGravatar Gintautas Kazlauskas <[email protected]>2022-02-25 00:16:25 +0200
commit1358a251ebea34db6704495b6fd39e81be649b5c (patch)
tree42bb16c5dbac8dcebcf38678d7475e86e0935664 /bot
parentUpdate bot/exts/fun/uwu.py (diff)
Fixed docstring.
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/fun/uwu.py2
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: