diff options
| author | Zeyla Hellyer <[email protected]> | 2017-08-18 20:50:23 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-08-18 20:50:23 -0700 |
| commit | ea72d05cf755d06d5c7da190e5d240fe4d77038c (patch) | |
| tree | 9cf159a0b15c7819f2dfc2fb20e9c6d62dbf152b /src/model/user.rs | |
| parent | Clippy lints (diff) | |
| download | serenity-ea72d05cf755d06d5c7da190e5d240fe4d77038c.tar.xz serenity-ea72d05cf755d06d5c7da190e5d240fe4d77038c.zip | |
Fix rustfmt lines that are too long
Apparently rustfmt can't fix some of these, causing it to exit with 3
and therefore failing the build.
Diffstat (limited to 'src/model/user.rs')
| -rw-r--r-- | src/model/user.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/model/user.rs b/src/model/user.rs index 7d26fd4..d3cb72d 100644 --- a/src/model/user.rs +++ b/src/model/user.rs @@ -172,7 +172,8 @@ impl CurrentUser { /// }, /// }; /// - /// assert_eq!(url, "https://discordapp.com/api/oauth2/authorize?client_id=249608697955745802&scope=bot"); + /// assert_eq!(url, "https://discordapp.com/api/oauth2/authorize? \ + /// client_id=249608697955745802&scope=bot"); /// ``` /// /// Get the invite url with some basic permissions set: |