From 8498d0254a139e037eecac2acc389785a74a56c7 Mon Sep 17 00:00:00 2001 From: Muhammad Rafay Nadeem <113093783+mrafnadeem-apimatic@users.noreply.github.com> Date: Sat, 27 Jan 2024 02:29:13 +0500 Subject: Update go.html.markdown with simpler wording (#4829) --- go.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'go.html.markdown') diff --git a/go.html.markdown b/go.html.markdown index 9dbfefaa..2eb40939 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -357,7 +357,7 @@ func learnInterfaces() { // Functions can have variadic parameters. func learnVariadicParams(myStrings ...interface{}) { // Iterate each value of the variadic. - // The underbar here is ignoring the index argument of the array. + // The underscore here is ignoring the index argument of the array. for _, param := range myStrings { fmt.Println("param:", param) } -- cgit v1.2.3