Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

Commit ef73ba4

Browse files
authored
Use gender neutral word in docs (#1260)
1 parent 6328b5a commit ef73ba4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/markup.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ module documentation example and then talk about the fields. ::
223223
{-|
224224
Module : W
225225
Description : Short description
226-
Copyright : (c) Some Guy, 2013
226+
Copyright : (c) Some Person, 2013
227227
Someone Else, 2014
228228
License : GPL-3
229229
Maintainer : sample@email.com
@@ -245,7 +245,7 @@ multiline ``Copyright`` field: ::
245245

246246
{-|
247247
...
248-
Copyright : (c) Some Guy, 2013
248+
Copyright : (c) Some Person, 2013
249249
Someone Else, 2014
250250
...
251251
-}
@@ -254,21 +254,21 @@ That could equivalently be written as ::
254254

255255
-- | ...
256256
-- Copyright:
257-
-- (c) Some Guy, 2013
257+
-- (c) Some Person, 2013
258258
-- Someone Else, 2014
259259
-- ...
260260

261261
or as ::
262262

263263
-- | ...
264-
-- Copyright: (c) Some Guy, 2013
264+
-- Copyright: (c) Some Person, 2013
265265
-- Someone Else, 2014
266266
-- ...
267267

268268
but not as ::
269269

270270
-- | ...
271-
-- Copyright: (c) Some Guy, 2013
271+
-- Copyright: (c) Some Person, 2013
272272
-- Someone Else, 2014
273273
-- ...
274274

@@ -965,7 +965,7 @@ underscore if you need it bold:
965965
Monospaced (or typewriter) text is indicated by surrounding it with
966966
``@...@``. Other markup is valid inside a monospaced span: for example
967967
``@'f' a b@`` will hyperlink the identifier ``f`` inside the code
968-
fragment, but ``@__FILE__@`` will render ``FILE`` in bold with no
968+
fragment, but ``@__FILE__@`` will render ``FILE`` in bold with no
969969
underscores, which may not be what you had in mind.
970970

971971
Linking to Modules
@@ -1148,8 +1148,8 @@ Grid Tables
11481148

11491149
Inspired by reSTs grid tables Haddock supports a complete table representation via a grid-like "ASCII art". Grid tables are described with a visual grid made up of the characters "-", "=", "|", and "+". The hyphen ("-") is used for horizontal lines (row separators). The equals sign ("=") may be used to separate optional header rows from the table body. The vertical bar ("|") is used for vertical lines (column separators). The plus sign ("+") is used for intersections of horizontal and vertical lines. ::
11501150

1151-
-- | This is a grid table:
1152-
--
1151+
-- | This is a grid table:
1152+
--
11531153
-- +------------------------+------------+----------+----------+
11541154
-- | Header row, column 1 | Header 2 | Header 3 | Header 4 |
11551155
-- | (header rows optional) | | | |

0 commit comments

Comments
 (0)