Applied a bunch of clippy lints.
This commit is contained in:
parent
c4888ed76c
commit
388628d62a
10 changed files with 168 additions and 171 deletions
|
@ -5,9 +5,9 @@ use irc::client::prelude::*;
|
|||
|
||||
fn main() {
|
||||
let config = Config {
|
||||
nickname: Some(format!("pickles")),
|
||||
server: Some(format!("irc.fyrechat.net")),
|
||||
channels: Some(vec![format!("#vana")]),
|
||||
nickname: Some("pickles".to_owned()),
|
||||
server: Some("irc.fyrechat.net".to_owned()),
|
||||
channels: Some(vec!["#vana".to_owned()]),
|
||||
port: Some(6697),
|
||||
use_ssl: Some(true),
|
||||
.. Default::default()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue