Skip to content

Commit

Permalink
BlockTypeTableBlock -> BlockTypeTable; BlockTypeTableRowBlock -> Bloc…
Browse files Browse the repository at this point in the history
…kTypeTableRow; Consistency is still the king
  • Loading branch information
amberpixels committed Dec 20, 2024
1 parent f2cb9bd commit f4a71bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions block.go
Original file line number Diff line number Diff line change
Expand Up @@ -834,9 +834,9 @@ func decodeBlock(raw map[string]interface{}) (Block, error) {
b = &TemplateBlock{}
case BlockTypeSyncedBlock:
b = &SyncedBlock{}
case BlockTypeTableBlock:
case BlockTypeTable:
b = &TableBlock{}
case BlockTypeTableRowBlock:
case BlockTypeTableRow:
b = &TableRowBlock{}

case BlockTypeUnsupported:
Expand Down
4 changes: 2 additions & 2 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ const (
BlockTypeLinkToPage BlockType = "link_to_page"
BlockTypeTemplate BlockType = "template"
BlockTypeSyncedBlock BlockType = "synced_block"
BlockTypeTableBlock BlockType = "table"
BlockTypeTableRowBlock BlockType = "table_row"
BlockTypeTable BlockType = "table"
BlockTypeTableRow BlockType = "table_row"
BlockTypeUnsupported BlockType = "unsupported"
)

Expand Down

0 comments on commit f4a71bd

Please sign in to comment.