Skip to content

Commit 6505da0

Browse files
committed
Fix view-pattern type sig warning
1 parent 6a0c95a commit 6505da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hls-plugin-api/src/Ide/Types.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ instance PluginRequestMethod Method_TextDocumentPrepareRename where
727727
combineResponses _ _ _ _ (x :| _) = x
728728

729729
instance PluginRequestMethod Method_TextDocumentHover where
730-
combineResponses _ _ _ _ (mapMaybe nullToMaybe . toList -> hs :: [Hover]) =
730+
combineResponses _ _ _ _ (mapMaybe nullToMaybe . toList -> (hs :: [Hover])) =
731731
if null hs
732732
then InR Null
733733
else InL $ Hover (InL mcontent) r

0 commit comments

Comments
 (0)