diff options
author | Josef Svenningsson <josef.svenningsson@gmail.com> | 2007-10-07 21:38:58 +0000 |
---|---|---|
committer | Josef Svenningsson <josef.svenningsson@gmail.com> | 2007-10-07 21:38:58 +0000 |
commit | 5263c9ab4408e3b62dbf7505ab40a81946d4e49b (patch) | |
tree | 8a8b1cab9a66f3c469c311d285fad2d1214b5f34 /docs/users_guide/separate_compilation.xml | |
parent | 160e41ed98615c633be9a7c27ec2f9ed768dae7f (diff) | |
download | haskell-5263c9ab4408e3b62dbf7505ab40a81946d4e49b.tar.gz |
Fix a whole heap of speling errrs in the docs
Diffstat (limited to 'docs/users_guide/separate_compilation.xml')
-rw-r--r-- | docs/users_guide/separate_compilation.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/separate_compilation.xml b/docs/users_guide/separate_compilation.xml index 58726e56d2..f963ca010c 100644 --- a/docs/users_guide/separate_compilation.xml +++ b/docs/users_guide/separate_compilation.xml @@ -703,7 +703,7 @@ module B where Here <filename>A</filename> imports <filename>B</filename>, but <filename>B</filename> imports <filename>A</filename> with a <literal>{-# SOURCE #-}</literal> pragma, which breaks the circular dependency. For every module <filename>A.hs</filename> that is <literal>{-# SOURCE #-}</literal>-imported -in this way there must exist a souce file <literal>A.hs-boot</literal>. This file contains an abbreviated +in this way there must exist a source file <literal>A.hs-boot</literal>. This file contains an abbreviated version of <filename>A.hs</filename>, thus: <programlisting> module A where @@ -1040,7 +1040,7 @@ ghc -M -optdep-f -optdep.depend ... <varlistentry> <term><option>-v2</option></term> <listitem> - <para>Print a full list of the module depenencies to stdout. + <para>Print a full list of the module dependencies to stdout. (This is the standard verbosity flag, so the list will also be displayed with <option>-v3</option> and <option>-v4</option>; |