From 5263c9ab4408e3b62dbf7505ab40a81946d4e49b Mon Sep 17 00:00:00 2001 From: Josef Svenningsson Date: Sun, 7 Oct 2007 21:38:58 +0000 Subject: [PATCH] Fix a whole heap of speling errrs in the docs --- docs/users_guide/ffi-chap.xml | 6 ++-- docs/users_guide/flags.xml | 4 +-- docs/users_guide/ghci.xml | 8 ++--- docs/users_guide/glasgow_exts.xml | 52 ++++++++++++++--------------- docs/users_guide/installing.xml | 2 +- docs/users_guide/packages.xml | 2 +- docs/users_guide/parallel.xml | 2 +- docs/users_guide/phases.xml | 4 +-- docs/users_guide/profiling.xml | 2 +- docs/users_guide/runtime_control.xml | 2 +- docs/users_guide/separate_compilation.xml | 4 +-- docs/users_guide/using.xml | 6 ++-- 12 files changed, 47 insertions(+), 47 deletions(-) diff --git a/docs/users_guide/ffi-chap.xml b/docs/users_guide/ffi-chap.xml index 96cbd59..988f95d 100644 --- a/docs/users_guide/ffi-chap.xml +++ b/docs/users_guide/ffi-chap.xml @@ -55,7 +55,7 @@ the GHC implements some major extensions to Haskell to support - concurrent and parallel programming. Let us first etablish terminology: + concurrent and parallel programming. Let us first establish terminology: Parallelism means running a Haskell program on multiple processors, with the goal of improving diff --git a/docs/users_guide/phases.xml b/docs/users_guide/phases.xml index 187bd79..7f3f139 100644 --- a/docs/users_guide/phases.xml +++ b/docs/users_guide/phases.xml @@ -133,7 +133,7 @@ Forcing options to a particular phase forcing GHC-phase options - Options can be forced through to a particlar compilation + Options can be forced through to a particular compilation phase, using the following flags: @@ -412,7 +412,7 @@ $ cat foo.hspp This symbol is defined when pre-processing Haskell (input) and pre-processing C (GHC output). Since GHC from - verion 4.00 now supports concurrent haskell by default, + version 4.00 now supports concurrent haskell by default, this symbol is always defined. diff --git a/docs/users_guide/profiling.xml b/docs/users_guide/profiling.xml index 9a1f289..1b4dfa0 100644 --- a/docs/users_guide/profiling.xml +++ b/docs/users_guide/profiling.xml @@ -1256,7 +1256,7 @@ to re-read its input file: hpc - Code coverage tools allow a programer to determine what parts of + Code coverage tools allow a programmer to determine what parts of their code have been actually executed, and which parts have never actually been invoked. GHC has an option for generating instrumented code that records code coverage as part of the diff --git a/docs/users_guide/runtime_control.xml b/docs/users_guide/runtime_control.xml index 776b65f..62a01ac 100644 --- a/docs/users_guide/runtime_control.xml +++ b/docs/users_guide/runtime_control.xml @@ -110,7 +110,7 @@ increase the resolution of the time profiler. Using a value of zero disables the RTS clock - completetly, and has the effect of disabling timers that + completely, and has the effect of disabling timers that depend on it: the context switch timer and the heap profiling timer. Context switches will still happen, but deterministically and at a rate much faster than normal. diff --git a/docs/users_guide/separate_compilation.xml b/docs/users_guide/separate_compilation.xml index 58726e5..f963ca0 100644 --- a/docs/users_guide/separate_compilation.xml +++ b/docs/users_guide/separate_compilation.xml @@ -703,7 +703,7 @@ module B where Here A imports B, but B imports A with a {-# SOURCE #-} pragma, which breaks the circular dependency. For every module A.hs that is {-# SOURCE #-}-imported -in this way there must exist a souce file A.hs-boot. This file contains an abbreviated +in this way there must exist a source file A.hs-boot. This file contains an abbreviated version of A.hs, thus: module A where @@ -1040,7 +1040,7 @@ ghc -M -optdep-f -optdep.depend ... - Print a full list of the module depenencies to stdout. + Print a full list of the module dependencies to stdout. (This is the standard verbosity flag, so the list will also be displayed with and ; diff --git a/docs/users_guide/using.xml b/docs/users_guide/using.xml index 2fe5959..5d92ab2 100644 --- a/docs/users_guide/using.xml +++ b/docs/users_guide/using.xml @@ -638,7 +638,7 @@ ghc -c Foo.hs Overriding the default behaviour for a file As described above, the way in which a file is processed by GHC - depends on its suffix. This behaviour can be overriden using the + depends on its suffix. This behaviour can be overridden using the option: @@ -1130,7 +1130,7 @@ f foo = foo { x = 6 } This option causes a warning to be emitted whenever the module contains an "orphan" instance declaration or rewrite rule. - An instance declartion is an orphan if it appears in a module in + An instance declaration is an orphan if it appears in a module in which neither the class nor the type being instanced are declared in the same module. A rule is an orphan if it is a rule for a function declared in another module. A module containing any @@ -1722,7 +1722,7 @@ f "2" = 2 is also possible to obtain performance improvements with parallelism on programs that do not use concurrency. This section describes how to use GHC to compile and run parallel programs, in we desribe the language features that affect + linkend="lang-parallel" /> we describe the language features that affect parallelism. -- 1.7.10.4