File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Sources/ComposableArchitecture/SwiftUI Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ extension TextState: CustomDebugOutputConvertible {
322
322
case . bold, . fontWeight( . some( . bold) ) :
323
323
output = " ** \( output) ** "
324
324
case . font( . some) :
325
- break // TODO: capture Font description using DSL similar to TextState and print here
325
+ break // TODO: capture Font description using DSL similar to TextState and print here
326
326
case let . fontWeight( . some( weight) ) :
327
327
func describe( weight: Font . Weight ) -> String {
328
328
switch weight {
@@ -353,10 +353,10 @@ extension TextState: CustomDebugOutputConvertible {
353
353
case let . underline( active: true , color) :
354
354
output = " <u \( color. map { " color= \( $0) " } ?? " " ) > \( output) </u> "
355
355
case . font( . none) ,
356
- . fontWeight( . none) ,
357
- . foregroundColor( . none) ,
358
- . strikethrough( active: false , color: _) ,
359
- . underline( active: false , color: _) :
356
+ . fontWeight( . none) ,
357
+ . foregroundColor( . none) ,
358
+ . strikethrough( active: false , color: _) ,
359
+ . underline( active: false , color: _) :
360
360
break
361
361
}
362
362
}
You can’t perform that action at this time.
0 commit comments