diff options
author | Simon Marlow <marlowsd@gmail.com> | 2011-08-25 11:11:58 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2011-08-25 11:12:35 +0100 |
commit | c5056b932a06b4adce5167a5cb69f1f0768d28ec (patch) | |
tree | fbe8e2efc64b8cd4a645aaa211570cfe43581b8e /docs/users_guide/phases.xml | |
parent | 0eb6439ecb6c5759f4e82e18442050b263f0c1e2 (diff) | |
download | haskell-c5056b932a06b4adce5167a5cb69f1f0768d28ec.tar.gz |
typos
Diffstat (limited to 'docs/users_guide/phases.xml')
-rw-r--r-- | docs/users_guide/phases.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/phases.xml b/docs/users_guide/phases.xml index 863838c977..7158c14af4 100644 --- a/docs/users_guide/phases.xml +++ b/docs/users_guide/phases.xml @@ -845,8 +845,8 @@ $ cat foo.hspp</screen> allows you to do so. The <replaceable>thing</replaceable> can be one of: <itemizedlist> <listitem><para>A lower-case identifier <literal>foo</literal>. GHC assumes that the main function is <literal>Main.foo</literal>.</para></listitem> - <listitem><para>An module name <literal>A</literal>. GHC assumes that the main function is <literal>A.main</literal>.</para></listitem> - <listitem><para>An qualified name <literal>A.foo</literal>. GHC assumes that the main function is <literal>A.foo</literal>.</para></listitem> + <listitem><para>A module name <literal>A</literal>. GHC assumes that the main function is <literal>A.main</literal>.</para></listitem> + <listitem><para>A qualified name <literal>A.foo</literal>. GHC assumes that the main function is <literal>A.foo</literal>.</para></listitem> </itemizedlist> Strictly speaking, <option>-main-is</option> is not a link-phase flag at all; it has no effect on the link step. The flag must be specified when compiling the module containing the specified main function (e.g. module <literal>A</literal> |