@@ -29,7 +29,7 @@ pub struct CliOptions {
29
29
#[ command( flatten) ]
30
30
pub info : InfoCliOptions ,
31
31
#[ command( flatten) ]
32
- pub text_formatting : TextForamttingCliOptions ,
32
+ pub text_formatting : TextFormattingCliOptions ,
33
33
#[ command( flatten) ]
34
34
pub ascii : AsciiCliOptions ,
35
35
#[ command( flatten) ]
@@ -171,7 +171,7 @@ pub struct ImageCliOptions {
171
171
172
172
#[ derive( Clone , Debug , Args , PartialEq , Eq ) ]
173
173
#[ command( next_help_heading = "TEXT FORMATTING" ) ]
174
- pub struct TextForamttingCliOptions {
174
+ pub struct TextFormattingCliOptions {
175
175
/// Changes the text colors (X X X...)
176
176
///
177
177
/// Goes in order of title, ~, underline, subtitle, colon, and info
@@ -240,7 +240,7 @@ impl Default for CliOptions {
240
240
CliOptions {
241
241
input : PathBuf :: from ( "." ) ,
242
242
info : InfoCliOptions :: default ( ) ,
243
- text_formatting : TextForamttingCliOptions :: default ( ) ,
243
+ text_formatting : TextFormattingCliOptions :: default ( ) ,
244
244
visuals : VisualsCliOptions :: default ( ) ,
245
245
ascii : AsciiCliOptions :: default ( ) ,
246
246
image : ImageCliOptions :: default ( ) ,
@@ -271,9 +271,9 @@ impl Default for InfoCliOptions {
271
271
}
272
272
}
273
273
274
- impl Default for TextForamttingCliOptions {
274
+ impl Default for TextFormattingCliOptions {
275
275
fn default ( ) -> Self {
276
- TextForamttingCliOptions {
276
+ TextFormattingCliOptions {
277
277
text_colors : Default :: default ( ) ,
278
278
iso_time : Default :: default ( ) ,
279
279
number_separator : NumberSeparator :: Plain ,
0 commit comments