diff options
author | Andreas Abel <andreas.abel@ifi.lmu.de> | 2021-07-25 19:45:00 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-07-27 12:04:12 -0400 |
commit | 20b352eb4a8f8112cf914bce99bc57c1d47c9966 (patch) | |
tree | 5cf3bf187be346aa249dcd32526abd46baef1b3e /docs | |
parent | cca08c2ca27881a94e875656fee882b9bf99d145 (diff) | |
download | haskell-20b352eb4a8f8112cf914bce99bc57c1d47c9966.tar.gz |
Doc: tabs to spaces
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 108928f210..1b9e8db96c 100644 --- a/docs/users_guide/using-warnings.rst +++ b/docs/users_guide/using-warnings.rst @@ -1736,7 +1736,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 @@ -1799,7 +1799,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 |