summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2016-01-23 21:12:24 +0100
committerBen Gamari <ben@smart-cactus.org>2016-01-23 21:13:42 +0100
commitb5e52bfc9e331a9ed2b3a30b790cfa331935aebe (patch)
tree041235e5fb9806837d5a61a3f08595f1e67f8e6d
parent6f96109b283dd5e4364062c5f71e0b11a9dfb9cd (diff)
downloadhaskell-b5e52bfc9e331a9ed2b3a30b790cfa331935aebe.tar.gz
user-guide: Fix typos
-rw-r--r--docs/users_guide/glasgow_exts.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/glasgow_exts.rst b/docs/users_guide/glasgow_exts.rst
index 055a558503..d753266ac4 100644
--- a/docs/users_guide/glasgow_exts.rst
+++ b/docs/users_guide/glasgow_exts.rst
@@ -8125,10 +8125,10 @@ ordinary implicit parameters.
``GHC.Stack`` additionally exports a function ``freezeCallStack`` that
allows users to freeze a ``CallStack``, preventing any future push
operations from having an effect. This can be used by library authors
-to prevent ``CallStack``\s from exposing unecessary implementation
+to prevent ``CallStack``\s from exposing unnecessary implementation
details. Consider the ``head`` example above, the ``myerror`` line in
the printed stack is not particularly enlightening, so we might choose
-to surpress it by freezing the ``CallStack`` that we pass to ``myerror``.
+to suppress it by freezing the ``CallStack`` that we pass to ``myerror``.
.. code-block:: none