diff options
| author | Zeyla Hellyer <[email protected]> | 2017-08-18 16:14:32 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-08-18 17:52:53 -0700 |
| commit | e4113570967a1fb13539efbfa2cf7285b19d95ba (patch) | |
| tree | 06bb020fcfaa5f8323454dfb525272314a900186 /src/utils/colour.rs | |
| parent | Move Clippy lints to a cfg_attr (diff) | |
| download | serenity-e4113570967a1fb13539efbfa2cf7285b19d95ba.tar.xz serenity-e4113570967a1fb13539efbfa2cf7285b19d95ba.zip | |
Apply rustfmt
Diffstat (limited to 'src/utils/colour.rs')
| -rw-r--r-- | src/utils/colour.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/colour.rs b/src/utils/colour.rs index cea6f45..77e4cdf 100644 --- a/src/utils/colour.rs +++ b/src/utils/colour.rs @@ -229,7 +229,7 @@ impl From<u64> for Colour { impl From<(u8, u8, u8)> for Colour { /// Constructs a Colour from rgb. - fn from((r, g,b): (u8, u8, u8)) -> Self { Colour::from_rgb(r, g, b) } + fn from((r, g, b): (u8, u8, u8)) -> Self { Colour::from_rgb(r, g, b) } } colour! { |