From 2a811957ecf035468f93a7247b4af85388dbb196 Mon Sep 17 00:00:00 2001 From: Nick Snyder Date: Mon, 1 Apr 2024 14:28:17 -0400 Subject: [PATCH 1/2] Fix typos --- .../descriptor/v1/file_descriptor_proto_extension.proto | 4 ++-- .../descriptor/v1/file_descriptor_proto_service.proto | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto b/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto index 9c62d21..f9ad99c 100644 --- a/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto +++ b/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto @@ -49,8 +49,8 @@ message FileDescriptorProtoExtension { // via the ResourceRef used in the request. Well-Known Types are special in the Protobuf ecosystem, // and can be imported without being contained in a specified module. // - It contains symbols that are referenced by symbols specified in the request. For example, - // if the request specified symbol "foo.v1.Foo" contained within "foo.proto", , which has a message - // field of type "baz.v1.Baz", which is contained within "baz.proto", the the file "baz.proto" + // if the request specified symbol "foo.v1.Foo" contained within "foo.proto", which has a message + // field of type "baz.v1.Baz", which is contained within "baz.proto", then the file "baz.proto" // will be marked as an import, regardless of which Module it derived from. If the symbols field // is not specified on the request, this situation will never occur. // diff --git a/buf/registry/descriptor/v1/file_descriptor_proto_service.proto b/buf/registry/descriptor/v1/file_descriptor_proto_service.proto index 940e82d..6ab667c 100644 --- a/buf/registry/descriptor/v1/file_descriptor_proto_service.proto +++ b/buf/registry/descriptor/v1/file_descriptor_proto_service.proto @@ -54,8 +54,8 @@ message GetFileDescriptorProtosRequest { // via the ResourceRef used in the request. Well-Known Types are special in the Protobuf ecosystem, // and can be imported without being contained in a specified module. // - It contains symbols that are referenced by symbols specified in the request. For example, - // if the request specified symbol "foo.v1.Foo" contained within "foo.proto", , which has a message - // field of type "baz.v1.Baz", which is contained within "baz.proto", the the file "baz.proto" + // if the request specified symbol "foo.v1.Foo" contained within "foo.proto", which has a message + // field of type "baz.v1.Baz", which is contained within "baz.proto", then the file "baz.proto" // will be marked as an import, regardless of which Module it derived from. If the symbols field // is not specified on the request, this situation will never occur. // @@ -102,7 +102,7 @@ message GetFileDescriptorProtosRequest { // // The filters exclude_imports, exclude_source_code_info, exclude_source_retention_options and // symbols continue to be respected even if this field is set. Specifically, if exclude_source_code_info - // is set, but this mask includes source_code_info, SourceCodeInfo will continue to be excludeded. + // is set, but this mask includes source_code_info, SourceCodeInfo will continue to be excluded. google.protobuf.FieldMask field_mask = 7; } From 4cca3353c58e51c6c745e83e7c6c0bb8a0823987 Mon Sep 17 00:00:00 2001 From: Nick Snyder Date: Mon, 20 May 2024 14:04:16 -0400 Subject: [PATCH 2/2] Update buf/registry/descriptor/v1/file_descriptor_proto_extension.proto Co-authored-by: Stefan VanBuren --- .../descriptor/v1/file_descriptor_proto_extension.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto b/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto index f9ad99c..ef42918 100644 --- a/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto +++ b/buf/registry/descriptor/v1/file_descriptor_proto_extension.proto @@ -23,8 +23,8 @@ option go_package = "buf.build/gen/go/bufbuild/registry/protocolbuffers/go/buf/r // Additional information about a FileDescriptorProto. // -// FileDescriptoProtos are not extendable, so we choose to sideband this information as opposed -// to creating a new FileDescriptoProto type, so that the FileDescriptorProtoService can return +// FileDescriptorProtos are not extendable, so we choose to sideband this information as opposed +// to creating a new FileDescriptorProto type, so that the FileDescriptorProtoService can return // standard FileDescriptorProtos that most expect. message FileDescriptorProtoExtension { option (buf.registry.priv.extension.v1beta1.message).response_only = true;