Index: go/src/infra/gae/libs/wrapper/gae/datastore.go |
diff --git a/go/src/infra/gae/libs/wrapper/gae/datastore.go b/go/src/infra/gae/libs/wrapper/gae/datastore.go |
index dc337f565dc2b3b85d4a3ad2dd0489b05517828b..cb99390ae955a130a0423a4fb174f4d1c8ed1b59 100644 |
--- a/go/src/infra/gae/libs/wrapper/gae/datastore.go |
+++ b/go/src/infra/gae/libs/wrapper/gae/datastore.go |
@@ -14,9 +14,9 @@ import ( |
"infra/gae/libs/wrapper" |
) |
-// UseDS adds a wrapper.Datastore implementation to context, accessible |
+// useDS adds a wrapper.Datastore implementation to context, accessible |
// by wrapper.GetDS(c) |
-func UseDS(c context.Context) context.Context { |
+func useDS(c context.Context) context.Context { |
return wrapper.SetDSFactory(c, func(ci context.Context) wrapper.Datastore { |
return &dsImpl{ctx(ci), ci} |
}) |