minor cleanups

This commit is contained in:
Jeff Carr 2025-03-02 07:49:45 -06:00
parent 4193f41847
commit 281ffbc75b
1 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ package forgepb;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
// I don't need this kind of specicivity (can't spell)
// Forge doesn't need this kind of specificity
// but this is what the patch files contain and how git sees them
// message Blob {
// string hunkLine = 1;
@ -16,7 +16,7 @@ import "google/protobuf/timestamp.proto"; // Import the well-known type for Time
// message File {
// string filename = 1;
// string hashLine = 2;
// repeated Blob Blobs = 3;
// repeated Blob Blobs = 3;
// }
//
// message Patch {
@ -55,8 +55,8 @@ message Patch {
}
message Patches { // this is a "PATCH: [1/x]" series
string uuid = 1; // `autogenpb:uuid:be926ad9-1111-484c-adf2-d96eeabf3079` // todo: add autogenpb support for this
string version = 2; // `autogenpb:version:v0.0.45` // todo: add autogenpb support for this
string uuid = 1; // `autogenpb:uuid:be926ad9-1111-484c-adf2-d96eeabf3079`
string version = 2; // `autogenpb:version:v0.0.45`
repeated Patch Patches = 3;
}
@ -78,7 +78,7 @@ message Patchset { // `autogenpb:mars
}
message Patchsets { // `autogenpb:marshal`
string uuid = 1; // `autogenpb:uuid:be926ad9-f07f-484c-adf2-d96eeabf3079` // todo: add autogenpb support for this
string version = 2; // `autogenpb:version:v0.0.45` // todo: add autogenpb support for this
string uuid = 1; // `autogenpb:uuid:be926ad9-f07f-484c-adf2-d96eeabf3079`
string version = 2; // `autogenpb:version:v0.0.45`
repeated Patchset Patchsets = 3;
}