From d87c6430e31a56481d6fdf6af1b776ffb4c1c49c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tanguy=20=E2=A7=93=20Herrmann?= Date: Wed, 13 Apr 2022 17:36:27 +0200 Subject: [PATCH] docs: fix go-ci guide slug and add file title MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tanguy ⧓ Herrmann --- docs/guides/1228-go-ci.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 ```