summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--patchset.proto12
1 files changed, 6 insertions, 6 deletions
diff --git a/patchset.proto b/patchset.proto
index 37cecf4..1e46817 100644
--- a/patchset.proto
+++ b/patchset.proto
@@ -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;
}