aboutsummaryrefslogtreecommitdiffhomepage
path: root/System
diff options
context:
space:
mode:
authorGravatar Simon Marlow <simonmar@microsoft.com>2006-09-08 11:18:58 +0000
committerGravatar Simon Marlow <simonmar@microsoft.com>2006-09-08 11:18:58 +0000
commit7c9149be01ab1bfd2922a75792bdeadebe7f373e (patch)
tree13b66067ce19bf4682f5d73b307025a772272e6e /System
parentce13d89e9e86faca50c7e25bf007ef24c6a91180 (diff)
fix haddock syntax
Diffstat (limited to 'System')
-rw-r--r--System/Posix/User.hsc22
1 files changed, 11 insertions, 11 deletions
diff --git a/System/Posix/User.hsc b/System/Posix/User.hsc
index 12173fa..2ca6f4f 100644
--- a/System/Posix/User.hsc
+++ b/System/Posix/User.hsc
@@ -147,10 +147,10 @@ getEffectiveUserName = do
data GroupEntry =
GroupEntry {
- groupName :: String, -- | The name of this group (gr_name)
- groupPassword :: String, -- | The password for this group (gr_passwd)
- groupID :: GroupID, -- | The unique numeric ID for this group (gr_gid)
- groupMembers :: [String] -- | A list of zero or more usernames that are members (gr_mem)
+ groupName :: String, -- ^ The name of this group (gr_name)
+ groupPassword :: String, -- ^ The password for this group (gr_passwd)
+ groupID :: GroupID, -- ^ The unique numeric ID for this group (gr_gid)
+ groupMembers :: [String] -- ^ A list of zero or more usernames that are members (gr_mem)
} deriving (Show, Read, Eq)
-- | @getGroupEntryForID gid@ calls @getgrgid@ to obtain
@@ -244,13 +244,13 @@ unpackGroupEntry ptr = do
data UserEntry =
UserEntry {
- userName :: String, -- | Textual name of this user (pw_name)
- userPassword :: String, -- | Password -- may be empty or fake if shadow is in use (pw_passwd)
- userID :: UserID, -- | Numeric ID for this user (pw_uid)
- userGroupID :: GroupID, -- | Primary group ID (pw_gid)
- userGecos :: String, -- | Usually the real name for the user (pw_gecos)
- homeDirectory :: String, -- | Home directory (pw_dir)
- userShell :: String -- | Default shell (pw_shell)
+ userName :: String, -- ^ Textual name of this user (pw_name)
+ userPassword :: String, -- ^ Password -- may be empty or fake if shadow is in use (pw_passwd)
+ userID :: UserID, -- ^ Numeric ID for this user (pw_uid)
+ userGroupID :: GroupID, -- ^ Primary group ID (pw_gid)
+ userGecos :: String, -- ^ Usually the real name for the user (pw_gecos)
+ homeDirectory :: String, -- ^ Home directory (pw_dir)
+ userShell :: String -- ^ Default shell (pw_shell)
} deriving (Show, Read, Eq)
--