1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 14:54:16 +03:00

Merge pull request #493 from github/haddoctor

Fix Haddock generation.
This commit is contained in:
Patrick Thomson 2020-02-19 16:27:50 -05:00 committed by GitHub
commit d266a22408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -23,5 +23,5 @@ data Kind
| Module
-- References
| Call
-- | Constant -- TODO: New kind for constant references
-- Constant -- TODO: New kind for constant references
deriving (Bounded, Enum, Eq, Show)

View File

@ -244,7 +244,7 @@ data EvalError term address value return where
DerefError :: value -> EvalError term address value value
ExportError :: ModulePath -> Name -> EvalError term address value ()
FloatFormatError :: Text -> EvalError term address value Scientific
-- ^ Indicates that our evaluator wasn't able to make sense of these literals.
-- Indicates that our evaluator wasn't able to make sense of these literals.
IntegerFormatError :: Text -> EvalError term address value Integer
NoNameError :: term -> EvalError term address value Name
RationalFormatError :: Text -> EvalError term address value Rational