aboutsummaryrefslogtreecommitdiff
path: root/dump
diff options
context:
space:
mode:
Diffstat (limited to 'dump')
-rw-r--r--dump/table.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/dump/table.scm b/dump/table.scm
index 1a9abc6..8f6a128 100644
--- a/dump/table.scm
+++ b/dump/table.scm
@@ -7,7 +7,7 @@
set-table-columns
make-column
column-name
- column-int?))
+ column-type))
(define-immutable-record-type <table>
(make-table name size columns)
@@ -17,7 +17,7 @@
(columns table-columns set-table-columns))
(define-immutable-record-type <column>
- (make-column name int?)
+ (make-column name type)
column?
(name column-name)
- (int? column-int?))
+ (type column-type))