diff options
author | Don Stewart <dons@galois.com> | 2008-03-10 00:54:55 +0000 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2008-03-10 00:54:55 +0000 |
commit | 0363aee684bd67ad60e990369dddc2055bf292fb (patch) | |
tree | c0a42dfc46ddd5614f84b49eaf90036f4ca171fc /libraries/base/Data/STRef.hs | |
parent | 450f869b1e73e96bb0c75a40e6921f17a908471b (diff) | |
download | haskell-0363aee684bd67ad60e990369dddc2055bf292fb.tar.gz |
untabify
Diffstat (limited to 'libraries/base/Data/STRef.hs')
-rw-r--r-- | libraries/base/Data/STRef.hs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libraries/base/Data/STRef.hs b/libraries/base/Data/STRef.hs index 10853bea34..288cbe778f 100644 --- a/libraries/base/Data/STRef.hs +++ b/libraries/base/Data/STRef.hs @@ -13,12 +13,12 @@ ----------------------------------------------------------------------------- module Data.STRef ( - -- * STRefs - STRef, -- abstract, instance Eq - newSTRef, -- :: a -> ST s (STRef s a) - readSTRef, -- :: STRef s a -> ST s a - writeSTRef, -- :: STRef s a -> a -> ST s () - modifySTRef -- :: STRef s a -> (a -> a) -> ST s () + -- * STRefs + STRef, -- abstract, instance Eq + newSTRef, -- :: a -> ST s (STRef s a) + readSTRef, -- :: STRef s a -> ST s a + writeSTRef, -- :: STRef s a -> a -> ST s () + modifySTRef -- :: STRef s a -> (a -> a) -> ST s () ) where import Prelude |