diff options
author | Twan van Laarhoven <twanvl@gmail.com> | 2008-01-17 21:50:36 +0000 |
---|---|---|
committer | Twan van Laarhoven <twanvl@gmail.com> | 2008-01-17 21:50:36 +0000 |
commit | 93ed9b8d722f093aea5fa0508ed1efb6e407a81a (patch) | |
tree | 624fec41163088990ed92a3bbe7dec481b00a845 | |
parent | bab1903ec60117017d8dcb7df276bcc2300a295b (diff) | |
download | haskell-93ed9b8d722f093aea5fa0508ed1efb6e407a81a.tar.gz |
Monadify iface/BuildTyCl: use return
-rw-r--r-- | compiler/iface/BuildTyCl.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/iface/BuildTyCl.lhs b/compiler/iface/BuildTyCl.lhs index 534bc5f4f1..66cb64506c 100644 --- a/compiler/iface/BuildTyCl.lhs +++ b/compiler/iface/BuildTyCl.lhs @@ -210,7 +210,7 @@ buildDataCon src_name declared_infix arg_stricts field_lbls stupid_ctxt dc_ids dc_ids = mkDataConIds wrap_name work_name data_con - ; returnM data_con } + ; return data_con } -- The stupid context for a data constructor should be limited to |