Skip to content

Commit

Permalink
Merge pull request #358 from BergQuester/move-method-doc-fix
Browse files Browse the repository at this point in the history
Fix documentation for move and move_from methods on object_list
  • Loading branch information
segiddins committed Feb 16, 2016
2 parents fbf14f4 + 5ed089a commit 5b60085
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/xcodeproj/project/object_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ def clear
super
end

# Moves the object at the given given index to the given position.
# Moves the given object to the given index.
#
# @param [Fixnum] from
# The current index of the object.
# @param [AbstractObject, ObjectDictionary] object
# The object to move.
#
# @param [Fixnum] to
# The new index for the object.
Expand All @@ -159,7 +159,7 @@ def move(object, new_index)
end
end

# Moves the object at the given given index to the given position.
# Moves the object at the given index to the given position.
#
# @param [Fixnum] from
# The current index of the object.
Expand Down

0 comments on commit 5b60085

Please sign in to comment.