Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove extra / in comments and extra newlines #83

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading