Skip to content

Commit

Permalink
docs: fix wiki URL for interfaces (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
msound authored Dec 17, 2023
1 parent aaf6074 commit 3da3746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/07-project-structure/01-project-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3da3746

Please sign in to comment.