Skip to content

Commit ae9cb7a

Browse files
author
Alex Walker
authored
Casing fixes (#81)
## What is the goal of this PR? To fix casing being inconsistent with standards resulting in odd-looking code in client-nodejs. ## What are the changes implemented in this PR? Casing fixes in Concept.
1 parent 30700a6 commit ae9cb7a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

protobuf/concept.proto

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -477,21 +477,21 @@ message RoleType {
477477
message GetRelationType {
478478
message Req {}
479479
message Res {
480-
Type relationType = 1;
480+
Type relation_type = 1;
481481
}
482482
}
483483

484484
message GetRelationTypes {
485485
message Req {}
486486
message Res {
487-
repeated Type relationType = 1;
487+
repeated Type relation_type = 1;
488488
}
489489
}
490490

491491
message GetPlayers {
492492
message Req {}
493493
message Res {
494-
repeated Type thingType = 1;
494+
repeated Type thing_type = 1;
495495
}
496496
}
497497
}
@@ -559,7 +559,7 @@ message ThingType {
559559

560560
message UnsetOwns {
561561
message Req {
562-
Type attributeType = 1;
562+
Type attribute_type = 1;
563563
}
564564
message Res {}
565565
}
@@ -666,7 +666,7 @@ message AttributeType {
666666

667667
message GetOwners {
668668
message Req {
669-
bool onlyKey = 1;
669+
bool only_key = 1;
670670
}
671671
message Res {
672672
repeated Type owner = 1;

0 commit comments

Comments
 (0)