This is an automated email from the ASF dual-hosted git repository.

yuxuan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/thrift-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 4ccc13d  fix invalid links
4ccc13d is described below

commit 4ccc13d60b13274b217bc2e18895af6a53e27708
Author: cocolato <[email protected]>
AuthorDate: Tue Mar 11 21:24:43 2025 +0800

    fix invalid links
---
 docs/HowToNewLanguage.md | 2 +-
 tutorial/go.md           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/HowToNewLanguage.md b/docs/HowToNewLanguage.md
index a77c5bb..984d665 100644
--- a/docs/HowToNewLanguage.md
+++ b/docs/HowToNewLanguage.md
@@ -24,7 +24,7 @@ Now fork the [Apache Thrift code 
base](https://thrift.apache.org/developers) on
 
 ### Implement a minimal feature set
 
-* Implement the [code 
generator](https://github.com/apache/thrift/tree/master/compiler/cpp/src/generate),
 typically by picking one from the existing pool that is close to what you 
need. There are already plenty of languages supported, and you'll find oop, 
procedural and functional styles. If in doubt, which one to choose of the two 
or three candidates you found, head to the next point
+* Implement the [code 
generator](https://github.com/apache/thrift/tree/master/compiler/cpp/src/thrift/generate),
 typically by picking one from the existing pool that is close to what you 
need. There are already plenty of languages supported, and you'll find oop, 
procedural and functional styles. If in doubt, which one to choose of the two 
or three candidates you found, head to the next point
 
 * Implement the Thrift library for that particular language, again by picking 
one of the [existing 
libraries](https://github.com/apache/thrift/tree/master/lib) as a starting 
point. Because the libraries differ largely with regard to the "depth" of their 
implementations it is recommended to have a closer look on what is implemented, 
and what is not.
 
diff --git a/tutorial/go.md b/tutorial/go.md
index 892190c..c44b36c 100644
--- a/tutorial/go.md
+++ b/tutorial/go.md
@@ -10,7 +10,7 @@ tutorial: true
  * At least Go 1.7 is required to run the tutorial code.
  * The GOPATH may need to be adjusted, alternatively manually put the Go 
Thrift library files into a suitable location.
  * The Thrift library and compiler must be the same version. Applications 
might work even with a version mismatch, but this unsupported.
-To use a specific version of the library, either clone the repository for that 
version, or use a package manager like [dep](https://golang.github.io/dep/) or 
[Go modules](https://github.com/golang/go/wiki/Modules).
+To use a specific version of the library, either clone the repository for that 
version, or use a package manager like [dep](https://golang.github.io/dep/) or 
[Go modules](https://go.dev/wiki/Modules).
 
 
 ### Client

Reply via email to