diff options
-rw-r--r-- | compiler/basicTypes/IdInfo.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/basicTypes/IdInfo.hs b/compiler/basicTypes/IdInfo.hs index 4c069ea925..eb897896a9 100644 --- a/compiler/basicTypes/IdInfo.hs +++ b/compiler/basicTypes/IdInfo.hs @@ -173,9 +173,9 @@ pprIdDetails other = brackets (pp other) -- 'Unique' (and are hence the same 'Id'); for example, one might lack -- the properties attached to the other. -- --- The 'IdInfo' gives information about the value, or definition, of the --- 'Id'. It does not contain information about the 'Id''s usage, --- except for 'demandInfo' and 'oneShotInfo'. +-- Most of the 'IdInfo' gives information about the value, or definition, of +-- the 'Id', independent of its usage. Exceptions to this +-- are 'demandInfo', 'occInfo', 'oneShotInfo' and 'callArityInfo'. data IdInfo = IdInfo { arityInfo :: !ArityInfo, -- ^ 'Id' arity |