Skip to content

Commit 68338a1

Browse files
gpetiotjonludlam
authored andcommitted
Renaming
1 parent b9f64a7 commit 68338a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/syntax.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module Table = struct
7474
let with_kind kind : 'a with_location list list -> 'a Ast.row =
7575
List.map (fun c -> (c, kind))
7676

77-
let from_grid grid : Ast.table =
77+
let from_raw_data grid : Ast.table =
7878
match grid with
7979
| [] -> create ~grid:[] ~align:[]
8080
| row1 :: rows2_N -> (
@@ -1253,7 +1253,7 @@ and light_table ~parent_markup ~parent_markup_location input =
12531253
in
12541254
let rows, brace_location = consume_rows [] ~last_loc:parent_markup_location in
12551255
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)
12571257

12581258
(* Consumes a table row that might start with [`Bar]. *)
12591259
and light_table_row ~parent_markup ~last_loc input =

0 commit comments

Comments
 (0)