protocolbuffers.github.io icon indicating copy to clipboard operation
protocolbuffers.github.io copied to clipboard

Results 18 protocolbuffers.github.io issues
Sort by recently updated
recently updated
newest added

Closes https://github.com/protocolbuffers/protobuf/issues/8853 by adding the [`ruby_package` option](https://github.com/protocolbuffers/protobuf/pull/4627) to the Ruby Generated Code Guide page. Make a note on the Do/Don't page that the `ruby_package` should be `::` delimited.

Lexical Scoping protobuf examples is invalid. ``` $ cat person.proto edition = "2023"; option features.enum_type = CLOSED; message Person { string name = 1; int32 id = 2 [features.presence =...

The code snippet referenced in section "The Protocol Buffer API" is no longer accurate. Section should be updated to reflect how latest python code is compiled. __meta_class__ is no longer...

wrong constant name, I changed Person_PHONE_TYPE_HOME to PhoneType_PHONE_TYPE_HOME

Clarify where the import path is specified since it uses `go_package` rather than import

The usage of reference names and punctuation marks

The guideline here https://protobuf.dev/programming-guides/style/#services suggests that RPC parameter names should mirrow RPC method names: service FooService { rpc GetSomething(GetSomethingRequest) returns (GetSomethingResponse); rpc ListSomething(ListSomethingRequest) returns (ListSomethingResponse); } This makes it really...

This PR fixes a few typos I spotted in the project. It also adds a `.gitignore` file to the project.

> Compiler Invocation The protocol buffer compiler produces Java output when invoked with the --java_out= command-line flag. The parameter to the --java_out= option is the directory where you want the...