Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: common/gcloud/pubsub/topic.go

Issue 1537883002: Initial distributor implementation (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Fix comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: common/gcloud/pubsub/topic.go
diff --git a/common/gcloud/pubsub/topic.go b/common/gcloud/pubsub/topic.go
index 15a267b21517d169639f82b6691b860cef427710..5c9e9f124d74da4bed8c30d08511a85e7a4c455f 100644
--- a/common/gcloud/pubsub/topic.go
+++ b/common/gcloud/pubsub/topic.go
@@ -13,7 +13,7 @@ type Topic string
var _ flag.Value = (*Topic)(nil)
-// NewTopic generates a new Subscritpion for a given project and topic name.
dnj (Google) 2016/06/16 16:57:22 I like how this was the wrong word, and it was als
iannucci 2016/06/18 01:35:41 :D
+// NewTopic generates a new Topic for a given project and topic name.
func NewTopic(project, name string) Topic {
return Topic(newResource(project, "topics", name))
}

Powered by Google App Engine
This is Rietveld 408576698