summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Abel <andreas.abel@ifi.lmu.de>2021-07-25 19:45:00 +0200
committerZubin Duggal <zubin.duggal@gmail.com>2021-08-05 13:50:07 +0530
commitec1931b568e35d90571ff7853574719b5da73673 (patch)
tree4675ab300cb25e16706b456df90dc990f95fc46d
parent4b1205c856b5fa5b7012f52d44bf95487c046732 (diff)
downloadhaskell-ec1931b568e35d90571ff7853574719b5da73673.tar.gz
Doc: tabs to spaces
(cherry picked from commit 20b352eb4a8f8112cf914bce99bc57c1d47c9966)
-rw-r--r--docs/users_guide/using-warnings.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/using-warnings.rst b/docs/users_guide/using-warnings.rst
index e12b3a92e5..d3378b2aa6 100644
--- a/docs/users_guide/using-warnings.rst
+++ b/docs/users_guide/using-warnings.rst
@@ -1625,7 +1625,7 @@ of ``-W(no-)*``.
are used. For instance: ::
- data P = P { x :: Int, y :: Int }
+ data P = P { x :: Int, y :: Int }
f1 :: P -> Int
f1 P{..} = 1 + 3
@@ -1647,7 +1647,7 @@ of ``-W(no-)*``.
For instance: ::
- data P = P { x :: Int, y :: Int }
+ data P = P { x :: Int, y :: Int }
f1 :: P -> Int
f1 P{x,y,..} = x + y