aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rake
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-22 15:00:29 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-22 15:00:29 +0000
commit2c5dcdf0b489d9ede506a2bd8c29075a24cdd891 (patch)
tree1bd5640ba1f592145b16c5882f690163b18b8741 /lib/rake
parente5eb6e9a3b8c2235dc81c0f3cb9c90e2b9f49c09 (diff)
downloadruby-2c5dcdf0b489d9ede506a2bd8c29075a24cdd891.tar.gz
* lib/{rake,rdoc,rss}/*, test/rexml/test_listener.rb: [DOC] Fix typos
by @dvsuresh [Fixes GH-486] https://github.com/ruby/ruby/pull/486 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rake')
-rw-r--r--lib/rake/linked_list.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rake/linked_list.rb b/lib/rake/linked_list.rb
index 26483703f4..7369e83ac3 100644
--- a/lib/rake/linked_list.rb
+++ b/lib/rake/linked_list.rb
@@ -80,7 +80,7 @@ module Rake
#
# 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