diff --git a/docs/guides/1228-go-ci.md b/docs/guides/1228-go-ci.md index 2ee0d624..56e15711 100644 --- a/docs/guides/1228-go-ci.md +++ b/docs/guides/1228-go-ci.md @@ -1,5 +1,5 @@ --- -slug: /1227/go-ci +slug: /1228/go-ci displayed_sidebar: europa --- @@ -21,13 +21,13 @@ both use the [Go dagger package](https://github.com/dagger/dagger/tree/main/pkg/ ## Go project -The project is a simple program that takes `$NAME` environment variable, use the [Go greeting package](https://github.com/dagger/dagger/tree/main/docs/plans/go-ci/hello/greeting) to print the `greeting.Greet()` out. +The project is a simple program that takes `$NAME` environment variable, use the [Go greeting package](https://github.com/dagger/dagger/tree/main/docs/plans/go-ci/hello/greeting) to print the `greeting.Greeting()` out. -```go file=../plans/go-ci/hello/main.go +```go file=../plans/go-ci/hello/main.go title=hello/main.go ``` -```go file=../plans/go-ci/hello/greeting/greeting.go +```go file=../plans/go-ci/hello/greeting/greeting.go title=hello/greeting/greeting.go ``` -```go file=../plans/go-ci/hello/greeting/greeting_test.go +```go file=../plans/go-ci/hello/greeting/greeting_test.go title=hello/greeting/greeting_test.go ```