File tree 4 files changed +4
-4
lines changed
src/Text/Pandoc/Lua/Marshal
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ peekCellFuzzy idx = liftLua (ltype idx) >>= \case
54
54
55
55
-- | Cell object type.
56
56
typeCell :: LuaError e => DocumentedType e Cell
57
- typeCell = deftype " pandoc Cell"
57
+ typeCell = deftype " Cell"
58
58
[ operation Eq $ defun " __eq"
59
59
### liftPure2 (\ a b -> fromMaybe False ((==) <$> a <*> b))
60
60
<#> parameter (optional . peekCell) " Cell" " self" " "
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ peekRowFuzzy idx = liftLua (ltype idx) >>= \case
47
47
48
48
-- | Row object type.
49
49
typeRow :: LuaError e => DocumentedType e Row
50
- typeRow = deftype " pandoc Row"
50
+ typeRow = deftype " Row"
51
51
[ operation Eq $ defun " __eq"
52
52
### liftPure2 (\ a b -> fromMaybe False ((==) <$> a <*> b))
53
53
<#> parameter (optional . peekRow) " Row" " self" " "
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ peekTableFoot = peekUD typeTableFoot
32
32
33
33
-- | Row object type.
34
34
typeTableFoot :: LuaError e => DocumentedType e TableFoot
35
- typeTableFoot = deftype " pandoc TableFoot"
35
+ typeTableFoot = deftype " TableFoot"
36
36
[ operation Eq $ defun " __eq"
37
37
### liftPure2 (\ a b -> fromMaybe False ((==) <$> a <*> b))
38
38
<#> parameter (optional . peekTableFoot) " TableFoot" " self" " "
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ peekTableHead = peekUD typeTableHead
32
32
33
33
-- | Row object type.
34
34
typeTableHead :: LuaError e => DocumentedType e TableHead
35
- typeTableHead = deftype " pandoc TableHead"
35
+ typeTableHead = deftype " TableHead"
36
36
[ operation Eq $ defun " __eq"
37
37
### liftPure2 (\ a b -> fromMaybe False ((==) <$> a <*> b))
38
38
<#> parameter (optional . peekTableHead) " TableHead" " self" " "
You can’t perform that action at this time.
0 commit comments