diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2016-01-26 12:00:58 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2016-01-26 12:00:58 +0100 |
commit | 5f5dc8626e59272f7055f57d9a651c9bbb3a6ee5 (patch) | |
tree | 114965372505a6e72fd6d16e23356419dfdf4e39 /docs | |
parent | 34c9a4e4290595adc2e59024f9bfdc914b0f6dd3 (diff) | |
download | haskell-5f5dc8626e59272f7055f57d9a651c9bbb3a6ee5.tar.gz |
Minor users-guide markup fixup [skip ci]
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/using-warnings.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/using-warnings.rst b/docs/users_guide/using-warnings.rst index 10fc9dfb10..e4f8d2c3a7 100644 --- a/docs/users_guide/using-warnings.rst +++ b/docs/users_guide/using-warnings.rst @@ -226,7 +226,7 @@ of ``-W(no-)*``. * If ``return`` is defined it must be canonical (i.e. ``return = pure``). * If ``(>>)`` is defined it must be canonical (i.e. ``(>>) = (*>)``). - Moreover, in 'Applicative' instance declarations: + Moreover, in ``Applicative`` instance declarations: * Warn if ``pure`` is defined backwards (i.e. ``pure = return``). * Warn if ``(*>)`` is defined backwards (i.e. ``(*>) = (>>)``). @@ -268,7 +268,7 @@ of ``-W(no-)*``. * If ``mappend`` is defined it must be canonical (i.e. ``mappend = (Data.Semigroup.<>)``). - Moreover, in 'Semigroup' instance declarations: + Moreover, in ``Semigroup`` instance declarations: * Warn if ``(<>)`` is defined backwards (i.e. ``(<>) = mappend``). |