| 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.
|
| +// NewTopic generates a new Topic for a given project and topic name.
|
| func NewTopic(project, name string) Topic {
|
| return Topic(newResource(project, "topics", name))
|
| }
|
|
|