Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
* origin/master:
  Fix some typos
  • Loading branch information
jimweirich committed Jul 10, 2013
2 parents c4d1bbd + b6a6ec9 commit 86f10cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/rake/linked_list.rb
Expand Up @@ -80,7 +80,7 @@ def self.empty
#
# When inheriting from the LinkedList class, you should implement
# a type specific Empty class as well. Make sure you set the class
# instance variable @parent to the assocated list class (this
# instance variable @parent to the associated list class (this
# allows conj, cons and make to work polymorphically).
class EmptyLinkedList < LinkedList
@parent = LinkedList
Expand Down
4 changes: 2 additions & 2 deletions lib/rake/task_arguments.rb
Expand Up @@ -21,12 +21,12 @@ def initialize(names, values, parent=nil)
}
end

# Retrive the complete array of sequential values
# Retrieve the complete array of sequential values
def to_a
@values.dup
end

# Retrive the list of values not associated with named arguments
# Retrieve the list of values not associated with named arguments
def extras
@values[@names.length..-1] || []
end
Expand Down

0 comments on commit 86f10cf

Please sign in to comment.