From 7388f402efbca7c57093b40c37443bd94de9d4dd Mon Sep 17 00:00:00 2001 From: Shen Li Date: Mon, 26 Oct 2015 22:01:51 +0800 Subject: [PATCH] *: Address comment --- sessionctx/variable/sysvar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sessionctx/variable/sysvar.go b/sessionctx/variable/sysvar.go index 6c96581d25..9d5997cad3 100644 --- a/sessionctx/variable/sysvar.go +++ b/sessionctx/variable/sysvar.go @@ -578,6 +578,6 @@ const ( type GlobalSysVarAccessor interface { // GetGlobalSysVar gets the global system variable value for name. GetGlobalSysVar(ctx context.Context, name string) (string, error) - // SetGlobalSysVar set global system variable name to value. + // SetGlobalSysVar sets the global system variable name to value. SetGlobalSysVar(ctx context.Context, name string, value string) error }