ThisaraWeerakoon opened a new issue, #2805: URL: https://github.com/apache/dubbo-go/issues/2805
# Documentation Error in Quick Start Guide (dubbo-go) ## Issue Description In the [Dubbo Golang SDK Quick Start Guide](https://dubbo.apache.org/en/overview/mannual/golang-sdk/quickstart/rpc/), the provided installation command for `protoc-gen-go-triple` is outdated. <img width="875" alt="Image" src="https://github.com/user-attachments/assets/5c3d15a1-22fb-4546-8afc-ae0eab81cd54" /> The correct command should be: ```sh go install github.com/dubbogo/protoc-gen-go-triple/[email protected] ``` This is consistent with the official [GitHub reference](https://github.com/apache/dubbo-go-samples/tree/main/helloworld). ## Steps to Reproduce 1. Visit [Dubbo Golang SDK Quick Start Guide](https://dubbo.apache.org/en/overview/mannual/golang-sdk/quickstart/rpc/). 2. Locate the installation command for `protoc-gen-go-triple`. 3. Compare it with the updated version from the GitHub page. ## Expected Outcome The documentation should provide the correct installation command to avoid confusion for new users. ## Suggested Fix Update the outdated command with: ```sh go install github.com/dubbogo/protoc-gen-go-triple/[email protected] ``` ## Label Suggestion `documentation` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
