Skip to content

Commit

Permalink
Fix order of parameters (#4636)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcbirzan authored and dhermes committed Dec 20, 2017
1 parent a62931a commit 190e148
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pubsub/subscriber/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ to subscribe to, and it must already exist. Once you have that, it is easy:
# values for your application.
topic_name = 'projects/{project}/topics/{topic}'
sub_name = 'projects/{project}/subscriptions/{subscription}'
subscriber.create_subscription(topic_name, sub_name)
subscriber.create_subscription(sub_name, topic_name)
Pulling a Subscription
Expand Down

0 comments on commit 190e148

Please sign in to comment.