summaryrefslogtreecommitdiff
path: root/docs/users_guide
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2018-06-18 14:22:54 +0200
committerGabor Greif <ggreif@gmail.com>2018-06-18 14:41:54 +0200
commit6ac8a72f7a044f44734a0270487c3bb6fb186d53 (patch)
tree615d72e490c418f79f4fb18d1453412394247af2 /docs/users_guide
parent30b029bea9abe1f5f2855d9e7f0ae26a18cf049b (diff)
downloadhaskell-6ac8a72f7a044f44734a0270487c3bb6fb186d53.tar.gz
Typofixes in docs and comments [ci skip]
Diffstat (limited to 'docs/users_guide')
-rw-r--r--docs/users_guide/debug-info.rst4
-rw-r--r--docs/users_guide/debugging.rst4
-rw-r--r--docs/users_guide/extending_ghc.rst2
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/users_guide/debug-info.rst b/docs/users_guide/debug-info.rst
index 9a3a67131f..ecda4afc6c 100644
--- a/docs/users_guide/debug-info.rst
+++ b/docs/users_guide/debug-info.rst
@@ -9,7 +9,7 @@ useable by most UNIX debugging tools.
-g⟨n⟩
:shortdesc: Produce DWARF debug information in compiled object files.
⟨n⟩ can be 0, 1, or 2, with higher numbers producing richer
- output. If ⟨n⟩ is omitted level 2 is assumed.
+ output. If ⟨n⟩ is omitted, level 2 is assumed.
:type: dynamic
:category: debugging
@@ -18,7 +18,7 @@ useable by most UNIX debugging tools.
Emit debug information in object code. Currently only DWARF debug
information is supported on x86-64 and i386. Currently debug levels 0
through 3 are accepted, with 0 disabling debug information production
- and higher numbers producing richer output. If ⟨n⟩ is omitted level 2
+ and higher numbers producing richer output. If ⟨n⟩ is omitted, level 2
is assumed.
diff --git a/docs/users_guide/debugging.rst b/docs/users_guide/debugging.rst
index de69db8128..8cd7fd9840 100644
--- a/docs/users_guide/debugging.rst
+++ b/docs/users_guide/debugging.rst
@@ -384,7 +384,7 @@ These flags dump various phases of GHC's C-\\- pipeline.
file parsing.
Cmm dumps don't include unreachable blocks since we print
- blocks in reverse post order.
+ blocks in reverse post-order.
.. ghc-flag:: -ddump-cmm-from-stg
:shortdesc: Dump STG-to-C-\\- output
@@ -763,7 +763,7 @@ Checking for consistency
useful when finding pointer tagging issues.
.. ghc-flag:: -fproc-alignment
- :shortdesc: Align functions at given boundry.
+ :shortdesc: Align functions at given boundary.
:type: dynamic
Align functions to multiples of the given value. Only valid values are powers
diff --git a/docs/users_guide/extending_ghc.rst b/docs/users_guide/extending_ghc.rst
index 91034e60e4..3cceead1f4 100644
--- a/docs/users_guide/extending_ghc.rst
+++ b/docs/users_guide/extending_ghc.rst
@@ -605,7 +605,7 @@ to segfaults or other runtime misbehaviour.
Source plugins
~~~~~~~~~~~~~~
-In additional to core and type checker plugins, you can install plugins that can
+In addition to core and type checker plugins, you can install plugins that can
access different representations of the source code. The main purpose of these
plugins is to make it easier to implement development tools.