File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ module Table = struct
74
74
let with_kind kind : 'a with_location list list -> 'a Ast.row =
75
75
List. map (fun c -> (c, kind))
76
76
77
- let from_grid grid : Ast.table =
77
+ let from_raw_data grid : Ast.table =
78
78
match grid with
79
79
| [] -> create ~grid: [] ~align: []
80
80
| row1 :: rows2_N -> (
@@ -1253,7 +1253,7 @@ and light_table ~parent_markup ~parent_markup_location input =
1253
1253
in
1254
1254
let rows, brace_location = consume_rows [] ~last_loc: parent_markup_location in
1255
1255
let grid = List. rev rows in
1256
- (Table.Light_syntax. from_grid grid, brace_location)
1256
+ (Table.Light_syntax. from_raw_data grid, brace_location)
1257
1257
1258
1258
(* Consumes a table row that might start with [`Bar]. *)
1259
1259
and light_table_row ~parent_markup ~last_loc input =
You can’t perform that action at this time.
0 commit comments