diff options
| author | acdenisSK <[email protected]> | 2017-10-01 21:59:33 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-10-01 22:14:23 +0200 |
| commit | 1bf4d9cb9823dca8c4bb77147c66eac2d53f609f (patch) | |
| tree | ba14ca714fa7bc1e6ba1d26f10e7c170bdf10ffa /src/utils/colour.rs | |
| parent | Have `ConnectionStage` derive Copy (diff) | |
| download | serenity-1bf4d9cb9823dca8c4bb77147c66eac2d53f609f.tar.xz serenity-1bf4d9cb9823dca8c4bb77147c66eac2d53f609f.zip | |
`to_owned` -> `to_string`
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 a263019..72df2e9 100644 --- a/src/utils/colour.rs +++ b/src/utils/colour.rs @@ -37,7 +37,7 @@ macro_rules! colour { /// # id: RoleId(1), /// # managed: false, /// # mentionable: false, -/// # name: "test".to_owned(), +/// # name: "test".to_string(), /// # permissions: permissions::PRESET_GENERAL, /// # position: 7, /// # }; |