diff options
| author | Lakelezz <[email protected]> | 2017-12-17 21:18:13 +0100 |
|---|---|---|
| committer | alex <[email protected]> | 2017-12-17 21:18:13 +0100 |
| commit | 9da642a5bea8b4ac2d291058ad22e4cbe27b1f94 (patch) | |
| tree | b622179287679b0ca5254f339aa4ce936ebf89c4 /src | |
| parent | Add missing trailing comma in match (diff) | |
| download | serenity-9da642a5bea8b4ac2d291058ad22e4cbe27b1f94.tar.xz serenity-9da642a5bea8b4ac2d291058ad22e4cbe27b1f94.zip | |
Fix typo (#235)
Diffstat (limited to 'src')
| -rw-r--r-- | src/model/user.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/user.rs b/src/model/user.rs index 6068da1..414f741 100644 --- a/src/model/user.rs +++ b/src/model/user.rs @@ -340,7 +340,7 @@ impl Default for OnlineStatus { #[derive(Clone, Debug, Deserialize)] pub struct User { /// The unique Id of the user. Can be used to calculate the account's - /// cration date. + /// creation date. pub id: UserId, /// Optional avatar hash. pub avatar: Option<String>, |