From 0eefe4696b7f3732100a9b8b16d3b9a6bd7b3cac Mon Sep 17 00:00:00 2001 From: Augustin Villetard Date: Mon, 10 Nov 2025 14:53:23 +0900 Subject: [PATCH] fix(golang): update fmt module expected output --- tutorials/learn-golang.org/en/The fmt module.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/learn-golang.org/en/The fmt module.md b/tutorials/learn-golang.org/en/The fmt module.md index 6e611121c..e8397fb84 100644 --- a/tutorials/learn-golang.org/en/The fmt module.md +++ b/tutorials/learn-golang.org/en/The fmt module.md @@ -77,7 +77,7 @@ func main() { Expected Output --------------- -Lord of the Rings is Leonardo's favourite movie +Tenet is Nolan's favourite movie Solution -------- @@ -86,8 +86,8 @@ package main import "fmt" func main() { - name := "Leonardo" - movie := "Lord of the Rings" + name := "Nolan" + movie := "Tenet" fmt.Printf("%s is %s's favourite movie", movie, name) } \ No newline at end of file