Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Jun 3, 2012
1 parent 49296d2 commit c1cb8a2
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/twitter/direct_message.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class DirectMessage < Twitter::Identifiable
include Twitter::Creatable
lazy_attr_reader :text

# @param other [Twiter::DirectMessage]
# @param other [Twitter::DirectMessage]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.id == self.id)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/photo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Photo < Twitter::Identifiable
lazy_attr_reader :display_url, :expanded_url, :indices, :media_url,
:media_url_https, :url

# @param other [Twiter::Photo]
# @param other [Twitter::Photo]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.id == self.id)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/place.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Place < Twitter::Identifiable
lazy_attr_reader :attributes, :country, :full_name, :name, :url, :woeid
alias :woe_id :woeid

# @param other [Twiter::Place]
# @param other [Twitter::Place]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.id == self.id)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/point.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Twitter
class Point < Twitter::Base
lazy_attr_reader :coordinates

# @param other [Twiter::Point]
# @param other [Twitter::Point]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.coordinates == self.coordinates)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/polygon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Twitter
class Polygon < Twitter::Base
lazy_attr_reader :coordinates

# @param other [Twiter::Polygon]
# @param other [Twitter::Polygon]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.coordinates == self.coordinates)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/saved_search.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class SavedSearch < Twitter::Identifiable
include Twitter::Creatable
lazy_attr_reader :name, :position, :query

# @param other [Twiter::SavedSearch]
# @param other [Twitter::SavedSearch]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.id == self.id)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/size.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Size < Twitter::Base
alias :height :h
alias :width :w

# @param other [Twiter::Size]
# @param other [Twitter::Size]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.h == self.h && other.w == self.w)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/status.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Status < Twitter::Identifiable
alias :retweeted? :retweeted
alias :truncated? :truncated

# @param other [Twiter::Status]
# @param other [Twitter::Status]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.id == self.id)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/suggestion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Twitter
class Suggestion < Twitter::Base
lazy_attr_reader :name, :size, :slug

# @param other [Twiter::Suggestion]
# @param other [Twitter::Suggestion]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.slug == self.slug)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/trend.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Twitter
class Trend < Twitter::Base
lazy_attr_reader :events, :name, :promoted_content, :query, :url

# @param other [Twiter::Trend]
# @param other [Twitter::Trend]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.name == self.name)
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class User < Twitter::Identifiable
alias :verified? :verified
alias :want_retweets? :want_retweets

# @param other [Twiter::User]
# @param other [Twitter::User]
# @return [Boolean]
def ==(other)
super || (other.class == self.class && other.id == self.id)
Expand Down

0 comments on commit c1cb8a2

Please sign in to comment.