Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Text/Parsec/Pos.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ type Column = Int

-- | The abstract data type @SourcePos@ represents source positions. It
-- contains the name of the source (i.e. file name), a line number and
-- a column number. @SourcePos@ is an instance of the 'Show', 'Eq' and
-- 'Ord' class.
-- a column number. The upper left is (1, 1). @SourcePos@ is an
-- instance of the 'Show', 'Eq' and 'Ord' class.

data SourcePos = SourcePos SourceName !Line !Column
deriving ( Eq, Ord, Data, Typeable)
Expand Down