File tree 1 file changed +5
-15
lines changed
ghcide/src/Development/IDE/Core
1 file changed +5
-15
lines changed Original file line number Diff line number Diff line change @@ -1052,17 +1052,7 @@ getDocsNonInteractive
1052
1052
:: HscEnv
1053
1053
-> Module
1054
1054
-> Name
1055
- -> IO
1056
- ( Either
1057
- GHC. ErrorMessages
1058
- ( Name
1059
- , Either
1060
- GetDocsFailure
1061
- ( Maybe HsDocString
1062
- , Maybe (IntMap HsDocString )
1063
- )
1064
- )
1065
- )
1055
+ -> IO (Either GHC. ErrorMessages (Name , Either GetDocsFailure (Maybe HsDocString , Maybe (IntMap HsDocString ))))
1066
1056
getDocsNonInteractive hsc_env mod name =
1067
1057
do
1068
1058
let
@@ -1077,10 +1067,10 @@ getDocsNonInteractive hsc_env mod name =
1077
1067
1078
1068
-- | Non-interactive, batch version of 'GHC.Runtime.Eval.getDocs'.
1079
1069
getDocsBatch
1080
- :: HscEnv
1081
- -> Module -- ^ a moudle where the names are in scope
1082
- -> [Name ]
1083
- -> IO (Either GHC. ErrorMessages (MS. Map Name (Either GetDocsFailure (Maybe HsDocString , Maybe (IntMap HsDocString )))))
1070
+ :: HscEnv
1071
+ -> Module -- ^ a moudle where the names are in scope
1072
+ -> [Name ]
1073
+ -> IO (Either GHC. ErrorMessages (MS. Map Name (Either GetDocsFailure (Maybe HsDocString , Maybe (IntMap HsDocString )))))
1084
1074
-- ^ Return a 'Map' of 'Name's to 'Either' (no docs messages) (general doc body & arg docs)
1085
1075
getDocsBatch hsc_env mod names =
1086
1076
do
You can’t perform that action at this time.
0 commit comments