summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-06 23:38:56 -0500
committerJeff Carr <[email protected]>2025-10-06 23:38:56 -0500
commit6753f190dfdbef8606aea0d1abedf47f089eb49b (patch)
tree3102dc6a6dfba980e8df59e2c06d814e9e9426c3 /example
parentd8ce54edfbc84d6880f06373b226976a1e702090 (diff)
s/save/sort duh
Diffstat (limited to 'example')
-rw-r--r--example/fruit.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/fruit.proto b/example/fruit.proto
index 2f2c908..7cc3f94 100644
--- a/example/fruit.proto
+++ b/example/fruit.proto
@@ -74,5 +74,5 @@ message Fruits { // `autogenpb:marshal` `
repeated Fruit Fruits = 3; // THIS MUST BE "Fruit" and then "Fruit" + "s"
int64 cost = 4; // you can add additional things here but the three lines above must conform to the standard above
map<string, string> junk = 5;
- string filename = 6; // `autogenpb:sort` -- this enables autogenerated pb.Load() and pb.Save()
+ string filename = 6; // `autogenpb:save` -- this enables autogenerated pb.Load() and pb.Save()
}