From 94beeb260f560ca74a0f3d1b0b6e72fff8cbdf98 Mon Sep 17 00:00:00 2001 From: pulko Date: Tue, 26 Dec 2023 13:34:22 +0100 Subject: [PATCH] fix: use proper verbs in printing --- _content/tour/basics/type-inference.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_content/tour/basics/type-inference.go b/_content/tour/basics/type-inference.go index b31193357a..e0d3a3e688 100644 --- a/_content/tour/basics/type-inference.go +++ b/_content/tour/basics/type-inference.go @@ -6,5 +6,5 @@ import "fmt" func main() { v := 42 // change me! - fmt.Printf("v is of type %T\n", v) + fmt.Printf("%v is of type %T\n", v, v) }