summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-14 05:51:15 -0500
committerJeff Carr <[email protected]>2025-09-14 05:51:15 -0500
commit6cfc61f4ad2d62a150a65c27e280807d96d3e8f4 (patch)
treee4664174cad5570168e5a01e7e8b965f800d2978
parenteb37c0b44927ba539c763ea55c9be95a0b1ec27f (diff)
oops s/Row/Col/ wrote so fast, used wrong word
-rw-r--r--table.proto20
1 files changed, 10 insertions, 10 deletions
diff --git a/table.proto b/table.proto
index a27fc3c..ed7a1a8 100644
--- a/table.proto
+++ b/table.proto
@@ -7,31 +7,31 @@ package gitpb;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
import "widget.proto"; // Import the well-known type for Timestamp
-message StringRow {
+message StringCol {
Widget header = 1;
repeated string vals = 2;
repeated Widget widgets = 3;
}
-message ButtonRow {
+message ButtonCol {
Widget header = 1;
repeated string vals = 2;
repeated Widget widgets = 3;
}
-message IntRow {
+message IntCol {
Widget header = 1;
repeated int64 vals = 2;
repeated Widget widgets = 3;
}
-message TimeRow {
+message TimeCol {
Widget header = 1;
repeated google.protobuf.Timestamp vals = 2;
repeated Widget widgets = 3;
}
-message BoolRow {
+message BoolCol {
Widget header = 1;
repeated Widget widgets = 2;
}
@@ -42,11 +42,11 @@ message Table { // `autogenpb:
Widget parent = 3;
Widget grid = 4;
repeated string order = 5;
- repeated StringRow stringRows = 6;
- repeated IntRow intRows = 7;
- repeated TimeRow timeRows = 8;
- repeated BoolRow boolRows = 9;
- repeated ButtonRow buttonRows = 10;
+ repeated StringCol stringCols = 6;
+ repeated IntCol intCols = 7;
+ repeated TimeCol timeCols = 8;
+ repeated BoolCol boolCols = 9;
+ repeated ButtonCol buttonCols = 10;
}
message Tables { // `autogenpb:marshal`