Expand prefix on generated identifiers #625

This commit is contained in:
Michael Snoyman 2013-12-03 12:01:11 +02:00
parent 6b2e4ef3a4
commit cca38cfe03

View File

@ -697,7 +697,7 @@ newIdent = do
x <- get
let i' = ghsIdent x + 1
put x { ghsIdent = i' }
return $ T.pack $ 'h' : show i'
return $ T.pack $ "hident" ++ show i'
-- | Redirect to a POST resource.
--