Skip to content

Commit

Permalink
Remove extra / in comments and extra newlines.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksnyder committed Mar 6, 2024
1 parent 143da1a commit b666c8e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 11 deletions.
5 changes: 2 additions & 3 deletions buf/registry/module/v1/label_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ message ListLabelsRequest {
message ListLabelsResponse {
// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The listed Labels.
repeated Label labels = 2;
Expand Down Expand Up @@ -176,10 +176,9 @@ message ListLabelHistoryResponse {
// The CommitCheckState for this Commit on this Label.
CommitCheckState commit_check_state = 2 [(buf.validate.field).required = true];
}

// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The ordered history of the Label.
repeated Value values = 2;
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/module/v1/module_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ message ListModulesRequest {
message ListModulesResponse {
// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The listed Modules.
repeated Module modules = 2;
Expand Down
5 changes: 2 additions & 3 deletions buf/registry/module/v1beta1/label_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ message ListLabelsRequest {
message ListLabelsResponse {
// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The listed Labels.
repeated Label labels = 2;
Expand Down Expand Up @@ -184,10 +184,9 @@ message ListLabelHistoryResponse {
// The CommitCheckState for this Commit on this Label.
CommitCheckState commit_check_state = 2 [(buf.validate.field).required = true];
}

// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The ordered history of the Label.
repeated Value values = 2;
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/module/v1beta1/module_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ message ListModulesRequest {
message ListModulesResponse {
// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The listed Modules.
repeated Module modules = 2;
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/owner/v1/organization_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ message ListOrganizationsRequest {
message ListOrganizationsResponse {
// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The listed Organizations.
repeated Organization organizations = 2;
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/owner/v1/user_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ message ListUsersRequest {
message ListUsersResponse {
// The next page token.
//
/// If empty, there are no more pages.
// If empty, there are no more pages.
string next_page_token = 1 [(buf.validate.field).string.max_len = 4096];
// The list of Users.
repeated User users = 2;
Expand Down
2 changes: 1 addition & 1 deletion buf/registry/priv/extension/v1beta1/extension.proto
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ message MessageConstraints {
// The given message should only be recursively used as part of RPCs that are marked
// as NO_SIDE_EFFECTS. Typically used to denote that a message should
// only be used in read-only contexts.
///
//
// This applies to all nested messages within the message that are marked as no_side_effects_only.
//
// This is not just for request/response messages, this is also for any message that
Expand Down

0 comments on commit b666c8e

Please sign in to comment.