summaryrefslogtreecommitdiff
path: root/poezio/user.py
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2019-03-17 18:50:40 +0000
committerMaxime “pep” Buquet <pep@bouah.net>2019-03-17 18:50:40 +0000
commit60b935a27162557cd779c8698ff66914c76b5cf7 (patch)
treefdb305fa50d3ce9c614235a6caa3176f8a6e7b12 /poezio/user.py
parentc7c3ea49ce98faa2d93392cca35621dca564946d (diff)
downloadpoezio-60b935a27162557cd779c8698ff66914c76b5cf7.tar.gz
poezio-60b935a27162557cd779c8698ff66914c76b5cf7.tar.bz2
poezio-60b935a27162557cd779c8698ff66914c76b5cf7.tar.xz
poezio-60b935a27162557cd779c8698ff66914c76b5cf7.zip
poezio/user: Fix English in docstring
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'poezio/user.py')
-rw-r--r--poezio/user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/user.py b/poezio/user.py
index 43832917..146a70da 100644
--- a/poezio/user.py
+++ b/poezio/user.py
@@ -6,7 +6,7 @@
# it under the terms of the zlib license. See the COPYING file.
"""
Define the user class.
-An user is a MUC participant, not a roster contact (see contact.py)
+A user is a MUC participant, not a roster contact (see contact.py)
"""
import logging
@@ -26,7 +26,7 @@ ROLE_DICT = {'': 0, 'none': 0, 'visitor': 1, 'participant': 2, 'moderator': 3}
class User:
"""
- keep trace of an user in a Room
+ keep track of a user in a Room
"""
__slots__ = ('last_talked', 'jid', 'chatstate', 'affiliation', 'show',
'status', 'role', 'nick', 'color')