File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -404,10 +404,11 @@ region context p = catchError p $ \err -> throwError $ context err
404
404
405
405
-- | `Position` represents the position of the parser in the input stream.
406
406
-- |
407
- -- | - `index` is the position since the start of the input. Starts at 0.
408
- -- | - `line` is the current line in the input. Starts at 1.
407
+ -- | - `index` is the position offset since the start of the input. Starts
408
+ -- | at *0*.
409
+ -- | - `line` is the current line in the input. Starts at *1*.
409
410
-- | - `column` is the column of the next character in the current line that
410
- -- | will be parsed. Starts at 1 .
411
+ -- | will be parsed. Starts at *1* .
411
412
newtype Position = Position
412
413
{ index :: Int
413
414
, line :: Int
You can’t perform that action at this time.
0 commit comments