From 33c7ca4316edfdf9b7c6d4dece7e0b754574c819 Mon Sep 17 00:00:00 2001 From: Robert Terhaar Date: Thu, 26 Nov 2015 01:26:21 -0500 Subject: [PATCH] change the name from "Variable" to "Variadic" --- en/02.3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/02.3.md b/en/02.3.md index b6d39f07..3c8e3bcc 100644 --- a/en/02.3.md +++ b/en/02.3.md @@ -257,9 +257,9 @@ The above example returns two values without names -you have the option of namin return } -### Variable arguments +### Variadic functions -Go supports variable arguments, which means you can give an uncertain numbers of argument to functions. +Go supports functions with a variable number of arguments. These functions are called "variadic", which means the function allows an uncertain numbers of arguments. func myfunc(arg ...int) {}