Skip to content

Commit 4659911

Browse files
committed
proto
1 parent c32d63f commit 4659911

File tree

12 files changed

+10
-12
lines changed

12 files changed

+10
-12
lines changed

examples/proto/common.proto

-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ package common;
1010
message Config {
1111
bool verbose = 1;
1212
}
13-

examples/proto/helloworld/helloworld.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package helloworld;
88
// The greeting service definition.
99
service Greeter {
1010
// Sends a greeting
11-
rpc SayHello (HelloRequest) returns (HelloReply) {}
11+
rpc SayHello(HelloRequest) returns (HelloReply) {}
1212
}
1313

1414
// The request message containing the user's name.

proto/prost/private/tests/package_imports/package_import.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ syntax = "proto3";
33
package package.import;
44

55
message A {
6-
string name = 1;
6+
string name = 1;
77
}

proto/prost/private/tests/package_imports/package_importer.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ package package.import;
55
import "package_import.proto";
66

77
message B {
8-
A a = 1;
8+
A a = 1;
99
}

proto/prost/private/tests/package_names/pkg.a.b.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ syntax = "proto3";
22
package pkg.a.b;
33

44
message Message {
5-
string name = 1;
5+
string name = 1;
66
}

proto/prost/private/tests/package_names/pkg.a.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ syntax = "proto3";
22
package pkg.a;
33

44
message Message {
5-
string name = 1;
5+
string name = 1;
66
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
syntax = "proto3";
22

33
message Message {
4-
string name = 1;
4+
string name = 1;
55
}

proto/prost/private/tests/package_names/pkg.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ syntax = "proto3";
22
package pkg;
33

44
message Message {
5-
string name = 1;
5+
string name = 1;
66
}

proto/prost/private/tests/services/helloworld/helloworld.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package helloworld;
55
// The greeting service definition.
66
service Greeter {
77
// Sends a greeting
8-
rpc SayHello (HelloRequest) returns (HelloReply) {}
8+
rpc SayHello(HelloRequest) returns (HelloReply) {}
99
}
1010

1111
// The request message containing the user's name.

proto/prost/private/tests/well_known_types/well_known_types.proto

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import "google/protobuf/wrappers.proto";
1616
package wkt;
1717

1818
message WellKnownTypes {
19-
2019
// Any
2120
google.protobuf.Any any = 1;
2221

test/proto/a.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
syntax = "proto3";
22

33
message A {
4-
string a = 1;
4+
string a = 1;
55
}

test/proto/b.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ syntax = "proto3";
33
import "a.proto";
44

55
message B {
6-
A a = 1;
6+
A a = 1;
77
}

0 commit comments

Comments
 (0)