Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Fix typos in inline documentation #205

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/instagram/client/subscriptions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def subscriptions(options={})
# @overload create_subscription(object, callback_url, aspect="media", options={})
# @param object [String] The object you'd like to subscribe to (user, tag, location or geography)
# @param callback_url [String] The subscription callback URL
# @param aspect [String] he aspect of the object you'd like to subscribe to (in this case, "media").
# @param aspect [String] The aspect of the object you'd like to subscribe to (in this case, "media").
# @param options [Hash] Addition options and parameters
# @option options [String, Integer] :object_id When specifying a location or tag use the location's ID or tag name respectively
# @option options [String, Float] :lat The center latitude of an area, used when subscribing to a geography object
Expand Down Expand Up @@ -73,12 +73,12 @@ def create_subscription(*args)
# @param options [Hash] Addition options and parameters
# @option options [Integer] :subscription_id The subscription's ID
# @option options [String] :object When specified will remove all subscriptions of this object type, unless an :object_id is also specified (user, tag, location or geography)
# @option options [String, Integer] :object_id When specifying :object, inlcude an :object_id to only remove subscriptions of that object and object_id
# @option options [String, Integer] :object_id When specifying :object, include an :object_id to only remove subscriptions of that object and object_id
# @overload delete_subscription(subscription_id, options={})
# @param subscription_id [Integer] The subscription's ID
# @param options [Hash] Addition options and parameters
# @option options [String] :object When specified will remove all subscriptions of this object type, unless an :object_id is also specified (user, tag, location or geography)
# @option options [String, Integer] :object_id When specifying :object, inlcude an :object_id to only remove subscriptions of that object and object_id
# @option options [String, Integer] :object_id When specifying :object, include an :object_id to only remove subscriptions of that object and object_id
# @return [Hashie::Mash]
# @example Deletes an application's user change subscription
# Instagram.delete_subscription(:object => "user")
Expand Down