diff options
author | Adam Sandberg Eriksson <adam@sandbergericsson.se> | 2018-02-18 11:08:31 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-02-18 11:57:45 -0500 |
commit | bfb90bcab844ded9051370b822f0a9582c35e83e (patch) | |
tree | aa9085f6c707412b54fc234252104a45afbbf944 /docs | |
parent | 9ff4cce373765cec064e2a41d4c6ddd84b873f04 (diff) | |
download | haskell-bfb90bcab844ded9051370b822f0a9582c35e83e.tar.gz |
Remove doubled words
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
Differential Revision: https://phabricator.haskell.org/D4368
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/8.2.1-notes.rst | 2 | ||||
-rw-r--r-- | docs/users_guide/phases.rst | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/docs/users_guide/8.2.1-notes.rst b/docs/users_guide/8.2.1-notes.rst index ca045eefd4..d46f08dd94 100644 --- a/docs/users_guide/8.2.1-notes.rst +++ b/docs/users_guide/8.2.1-notes.rst @@ -154,7 +154,7 @@ Compiler directive on undefined identifiers. - GHC will no longer automatically infer the kind of higher-rank type synonyms; - you must explicitly explicitly annotate the synonym with a kind signature. + you must explicitly annotate the synonym with a kind signature. For example, given:: data T :: (forall k. k -> Type) -> Type diff --git a/docs/users_guide/phases.rst b/docs/users_guide/phases.rst index da8a84b25a..ad9daf1279 100644 --- a/docs/users_guide/phases.rst +++ b/docs/users_guide/phases.rst @@ -900,9 +900,8 @@ for example). The threaded runtime system provides the following benefits: - It enables the :rts-flag:`-N ⟨x⟩` RTS option to be used, - which allows threads to run in parallelparallelism on a - multiprocessormultiprocessorSMP or multicoremulticore machine. - See :ref:`using-smp`. + which allows threads to run in parallel on a multiprocessor + or multicore machine. See :ref:`using-smp`. - If a thread makes a foreign call (and the call is not marked ``unsafe``), then other Haskell threads in the program will |