aboutsummaryrefslogtreecommitdiff
path: root/src/model/user.rs
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-11-06 10:17:08 -0800
committerAustin Hellyer <[email protected]>2016-11-06 10:17:08 -0800
commit8f145f223804b869df2304a64ce5d3d42c772226 (patch)
tree285a7c187c876f9acd1eaf5c7031704209bcf01e /src/model/user.rs
parentMove HTTP/ratelimiting into a separate module (diff)
downloadserenity-8f145f223804b869df2304a64ce5d3d42c772226.tar.xz
serenity-8f145f223804b869df2304a64ce5d3d42c772226.zip
Add some more documentation
Diffstat (limited to 'src/model/user.rs')
-rw-r--r--src/model/user.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/user.rs b/src/model/user.rs
index fc21ea5..b0c82cf 100644
--- a/src/model/user.rs
+++ b/src/model/user.rs
@@ -80,7 +80,7 @@ impl User {
/// Check if a guild has a [`Role`] by Id:
///
/// ```rust,ignore
- /// // Assumes a 'guild' and `role_id` have already been defined
+ /// // Assumes a 'guild' and `role_id` have already been bound
/// context.message.author.has_role(guild, role_id);
/// ```
///