@@ -29,7 +29,7 @@ pub struct CliOptions {
2929 #[ command( flatten) ]
3030 pub info : InfoCliOptions ,
3131 #[ command( flatten) ]
32- pub text_formatting : TextForamttingCliOptions ,
32+ pub text_formatting : TextFormattingCliOptions ,
3333 #[ command( flatten) ]
3434 pub ascii : AsciiCliOptions ,
3535 #[ command( flatten) ]
@@ -171,7 +171,7 @@ pub struct ImageCliOptions {
171171
172172#[ derive( Clone , Debug , Args , PartialEq , Eq ) ]
173173#[ command( next_help_heading = "TEXT FORMATTING" ) ]
174- pub struct TextForamttingCliOptions {
174+ pub struct TextFormattingCliOptions {
175175 /// Changes the text colors (X X X...)
176176 ///
177177 /// Goes in order of title, ~, underline, subtitle, colon, and info
@@ -240,7 +240,7 @@ impl Default for CliOptions {
240240 CliOptions {
241241 input : PathBuf :: from ( "." ) ,
242242 info : InfoCliOptions :: default ( ) ,
243- text_formatting : TextForamttingCliOptions :: default ( ) ,
243+ text_formatting : TextFormattingCliOptions :: default ( ) ,
244244 visuals : VisualsCliOptions :: default ( ) ,
245245 ascii : AsciiCliOptions :: default ( ) ,
246246 image : ImageCliOptions :: default ( ) ,
@@ -271,9 +271,9 @@ impl Default for InfoCliOptions {
271271 }
272272}
273273
274- impl Default for TextForamttingCliOptions {
274+ impl Default for TextFormattingCliOptions {
275275 fn default ( ) -> Self {
276- TextForamttingCliOptions {
276+ TextFormattingCliOptions {
277277 text_colors : Default :: default ( ) ,
278278 iso_time : Default :: default ( ) ,
279279 number_separator : NumberSeparator :: Plain ,
0 commit comments