diff --git a/docs/docs/07-project-structure/01-project-structure.md b/docs/docs/07-project-structure/01-project-structure.md index 2955611e6..ec892ea63 100644 --- a/docs/docs/07-project-structure/01-project-structure.md +++ b/docs/docs/07-project-structure/01-project-structure.md @@ -53,7 +53,7 @@ Layering an application in this way can simplify code structure, since the respo To ensure that each part of the application is initialized with its dependencies, each struct defines a constructor (the `New` function in this example). -As per https://github.com/golang/go/wiki/CodeReviewComments#interfaces the HTTP handler defines the interface that it's expecting, rather than the service defining its own interface. +As per https://go.dev/wiki/CodeReviewComments#interfaces the HTTP handler defines the interface that it's expecting, rather than the service defining its own interface. ```go title="services/count.go" type CountService interface {