summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMuhammad Rafay Nadeem <113093783+mrafnadeem-apimatic@users.noreply.github.com>2024-01-27 02:29:13 +0500
committerGitHub <noreply@github.com>2024-01-26 22:29:13 +0100
commit8498d0254a139e037eecac2acc389785a74a56c7 (patch)
tree85616a8a45805f86fd46cbb21e046220c72bca73
parent3ae5f34a91e8db6b73b5daea0d378337337ca4a8 (diff)
Update go.html.markdown with simpler wording (#4829)
-rw-r--r--go.html.markdown2
1 files changed, 1 insertions, 1 deletions
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)
}