aboutsummaryrefslogtreecommitdiff
path: root/src/ident.rs
diff options
context:
space:
mode:
authorTill Hoeppner2015-01-04 23:34:37 +0100
committerTill Hoeppner2015-01-04 23:34:37 +0100
commitcd708c3ef3f8c070f4b0c566575fb043c4eb1e8e (patch)
treec600c8399d87fe18c4da05ad121f710ea11d2bac /src/ident.rs
parent326b5d9d96a5f45fa8b371f2a78394bcd87030e0 (diff)
downloadirsc-cd708c3ef3f8c070f4b0c566575fb043c4eb1e8e.tar.gz
irsc-cd708c3ef3f8c070f4b0c566575fb043c4eb1e8e.tar.xz
irsc-cd708c3ef3f8c070f4b0c566575fb043c4eb1e8e.zip
I should make smaller commits.
Diffstat (limited to 'src/ident.rs')
-rw-r--r--src/ident.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ident.rs b/src/ident.rs
index 6a01d12..099a129 100644
--- a/src/ident.rs
+++ b/src/ident.rs
@@ -3,7 +3,7 @@ use std::borrow::ToOwned;
static PATTERN: Regex = regex!(":(.*)!(.*)@(.*)");
-#[deriving(Show, Clone)]
+#[derive(Show, Clone)]
pub struct Ident {
pub nickname: String,
pub user: String,