Explorar el Código

Fix? implementation of Show UIElement

jherve hace 2 años
padre
commit
3f3b33e4e7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/LinkedIn/UIElements/Types.purs

+ 1 - 1
src/LinkedIn/UIElements/Types.purs

@@ -42,5 +42,5 @@ data UIElement =
 
 
 derive instance Generic UIElement _
 derive instance Generic UIElement _
 instance Show UIElement where
 instance Show UIElement where
-  show (UIDotSeparated ui1 ui2) = "(UIDotSeparated " <> genericShow ui1 <> genericShow ui2 <> ")"
+  show (UIDotSeparated ui1 ui2) = "(UIDotSeparated " <> show ui1 <> show ui2 <> ")"
   show u = genericShow u
   show u = genericShow u