summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Z. Yang <ezyang@cs.stanford.edu>2016-08-28 00:18:21 -0700
committerEdward Z. Yang <ezyang@cs.stanford.edu>2016-08-28 00:18:21 -0700
commitca8c0e279a87d93c1fb10460c24ef35a9080238f (patch)
tree78b6c0181a4cf6f323f192f03d5bca560572d78b
parent0050aff22ba04baca732bf5124002417ab667f8a (diff)
downloadhaskell-ca8c0e279a87d93c1fb10460c24ef35a9080238f.tar.gz
Typofix in docs.
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
-rw-r--r--compiler/basicTypes/Module.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/basicTypes/Module.hs b/compiler/basicTypes/Module.hs
index 0bade7dfda..c0e90804ac 100644
--- a/compiler/basicTypes/Module.hs
+++ b/compiler/basicTypes/Module.hs
@@ -308,7 +308,7 @@ moduleNameSlashes :: ModuleName -> String
moduleNameSlashes = dots_to_slashes . moduleNameString
where dots_to_slashes = map (\c -> if c == '.' then pathSeparator else c)
--- |Returns the string version of the module name, with dots replaced by underscores.
+-- |Returns the string version of the module name, with dots replaced by colons.
--
moduleNameColons :: ModuleName -> String
moduleNameColons = dots_to_colons . moduleNameString