summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2017-12-23 11:23:40 -0500
committerBen Gamari <ben@smart-cactus.org>2018-01-02 15:55:10 -0500
commita2e95495c1f770f20c2e882e72401cad5ed864d6 (patch)
tree17c7253f4b8f1fb4736138311ff10cc6b5d86382
parent862c59e7bf714e6059392ea401bb0a568c959725 (diff)
downloadhaskell-a2e95495c1f770f20c2e882e72401cad5ed864d6.tar.gz
users-guide: Fix markup
-rw-r--r--docs/users_guide/using-warnings.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/users_guide/using-warnings.rst b/docs/users_guide/using-warnings.rst
index cf41c283ab..bd3c41d5d4 100644
--- a/docs/users_guide/using-warnings.rst
+++ b/docs/users_guide/using-warnings.rst
@@ -580,10 +580,10 @@ of ``-W(no-)*``.
foreign import "&f" f :: FunPtr t
- The first form declares that \`f\` is a (pure) C function that takes
- no arguments and returns a pointer to a C function with type \`t\`,
- whereas the second form declares that \`f\` itself is a C function
- with type \`t\`. The first declaration is usually a mistake, and one
+ The first form declares that ``f`` is a (pure) C function that takes
+ no arguments and returns a pointer to a C function with type ``t``,
+ whereas the second form declares that ``f`` itself is a C function
+ with type ``t``. The first declaration is usually a mistake, and one
that is hard to debug because it results in a crash, hence this
warning.