cargo fmt

This commit is contained in:
Jordan Petridis 2018-05-30 16:25:15 +03:00
parent bb9e368b2d
commit 8c0055723c
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6
2 changed files with 1 additions and 2 deletions

View File

@ -49,7 +49,7 @@ use app::Action;
///
/// let messages: Vec<Message> = Vec::new();
/// let list = gtk::ListBox::new();
/// let constructor = |m| { MessageWidget::new(m).0};
/// let constructor = |m| MessageWidget::new(m).0;
/// lazy_load(messages, list, constructor, || {});
/// ```
///

View File

@ -5,7 +5,6 @@ wrap_comments = true
tab_spaces = 4
hard_tabs = false
newline_style = "Unix"
write_mode = "Overwrite"
condense_wildcard_suffixes = false
format_strings = true
normalize_comments = true