summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Data
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2014-10-16 14:03:57 +0000
committerhallgren <hallgren@chalmers.se>2014-10-16 14:03:57 +0000
commitc924491289259fa8a5a259ed97f2d9e817e3338c (patch)
tree178f045daa6520ca0979d093167727511c06541e /src/compiler/GF/Data
parentc0ebbc4edfeaf16a6a5f4392ea097ea3d72a0e06 (diff)
More haddock documentation improvements
Diffstat (limited to 'src/compiler/GF/Data')
-rw-r--r--src/compiler/GF/Data/Operations.hs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/compiler/GF/Data/Operations.hs b/src/compiler/GF/Data/Operations.hs
index ef34de27b..69b089623 100644
--- a/src/compiler/GF/Data/Operations.hs
+++ b/src/compiler/GF/Data/Operations.hs
@@ -14,19 +14,19 @@
-- Copyright (c) Aarne Ranta 1998-2000, under GNU General Public License (see GPL)
-----------------------------------------------------------------------------
-module GF.Data.Operations (-- * misc functions
+module GF.Data.Operations (-- ** Misc functions
ifNull,
- -- * the Error monad
+ -- ** The Error monad
Err(..), err, maybeErr, testErr, errVal, errIn,
lookupErr,
mapPairListM, mapPairsM, pairM,
singleton, --mapsErr, mapsErrTree,
- -- ** checking
+ -- ** Checking
checkUnique, unifyMaybeBy, unifyMaybe,
- -- * binary search trees; now with FiniteMap
+ -- ** Binary search trees; now with FiniteMap
BinTree, emptyBinTree, isInBinTree, justLookupTree,
lookupTree, --lookupTreeMany,
lookupTreeManyAll, updateTree,
@@ -36,28 +36,28 @@ module GF.Data.Operations (-- * misc functions
tree2list,
- -- * printing
+ -- ** Printing
indent, (+++), (++-), (++++), (+++++),
prUpper, prReplicate, prTList, prQuotedString, prParenth, prCurly,
prBracket, prArgList, prSemicList, prCurlyList, restoreEscapes,
numberedParagraphs, prConjList, prIfEmpty, wrapLines,
- -- * extra
+ -- ** Extra
combinations,
- -- * topological sorting with test of cyclicity
+ -- ** Topological sorting with test of cyclicity
topoTest, topoTest2,
- -- * the generic fix point iterator
+ -- ** The generic fix point iterator
iterFix,
- -- * chop into separator-separated parts
+ -- ** Chop into separator-separated parts
chunks, readIntArg,
- -- * state monad with error; from Agda 6\/11\/2001
+ -- ** State monad with error; from Agda 6\/11\/2001
STM(..), appSTM, stm, stmr, readSTM, updateSTM, writeSTM, done,
- -- * error monad class
+ -- ** Error monad class
ErrorMonad(..), checkAgain, checks, allChecks, doUntil,
liftErr