We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a01cc9 commit 79c0794Copy full SHA for 79c0794
examples/production_app.rs
@@ -44,9 +44,7 @@ impl AppConfig {
44
/// Builds a sample configuration as if parsed from CLI args.
45
fn from_simulated_args() -> Self {
46
Self {
47
- files: (1..=20)
48
- .map(|i| format!("document_{:02}.pdf", i))
49
- .collect(),
+ files: (1..=20).map(|i| format!("document_{:02}.pdf", i)).collect(),
50
output_dir: "/tmp/processed".into(),
51
}
52
@@ -185,7 +183,7 @@ impl App for ProcessorApp {
185
183
Constraint::Length(3), // Title
186
184
Constraint::Length(3), // Progress bar
187
Constraint::Length(3), // Current file indicator
188
- Constraint::Min(6), // Status log
+ Constraint::Min(6), // Status log
189
Constraint::Length(1), // Bottom status bar
190
])
191
.split(area);
0 commit comments