Skip to content
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.

Remove redundant vec![] in user_input example #631

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/user_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ fn ui<B: Backend>(f: &mut Frame<B>, app: &App) {
.iter()
.enumerate()
.map(|(i, m)| {
let content = vec![Spans::from(Span::raw(format!("{}: {}", i, m)))];
let content = Spans::from(Span::raw(format!("{}: {}", i, m)));
ListItem::new(content)
})
.collect();
Expand Down