From 7ce9b451666825e99a5ce8ae0aa3d37fd4ba1c03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sun, 10 Dec 2017 14:42:12 +0200 Subject: [PATCH] Fix typo in API docstrings --- ircbot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ircbot.py b/ircbot.py index 2de60d7..b78b034 100644 --- a/ircbot.py +++ b/ircbot.py @@ -60,8 +60,8 @@ class API: self.serverthread_object = serverthread_object def send_raw(self, line): - """Sends a raw line (will terminate it itself. - Don't use unless you are completely sure you know wha you're doing.""" + """Sends a raw line (will terminate it itself.) + Don't use unless you are completely sure you know what you're doing.""" self.serverthread_object.send_line_raw(line) def msg(self, recipient, message):