Index: go/src/infra/gae/libs/wrapper/memory/globalinfo.go |
diff --git a/go/src/infra/gae/libs/wrapper/memory/globalinfo.go b/go/src/infra/gae/libs/wrapper/memory/globalinfo.go |
index 2d3027271e6d9ccf56eb3412fcb4a25d7c2c7329..397e9def6820e15582ff895a313e3b2004469e06 100644 |
--- a/go/src/infra/gae/libs/wrapper/memory/globalinfo.go |
+++ b/go/src/infra/gae/libs/wrapper/memory/globalinfo.go |
@@ -18,9 +18,9 @@ func curGID(c context.Context) *globalInfoData { |
return c.Value(giContextKey).(*globalInfoData) |
} |
-// UseGI adds a wrapper.GlobalInfo context, accessible |
+// useGI adds a wrapper.GlobalInfo context, accessible |
// by wrapper.GetGI(c) |
-func UseGI(c context.Context) context.Context { |
+func useGI(c context.Context) context.Context { |
return wrapper.SetGIFactory(c, func(ic context.Context) wrapper.GlobalInfo { |
return &giImpl{wrapper.DummyGI(), curGID(ic), ic} |
}) |