From 60ad5d90d469161524944b72bda67b40fa30ea65 Mon Sep 17 00:00:00 2001 From: Jim Weirich Date: Thu, 4 Feb 2010 22:10:20 -0500 Subject: [PATCH] Fixed doc typos --- lib/rake/file_list.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/rake/file_list.rb b/lib/rake/file_list.rb index eaf4c78f1..faa892261 100644 --- a/lib/rake/file_list.rb +++ b/lib/rake/file_list.rb @@ -224,7 +224,7 @@ def resolve_exclude private :resolve_exclude # Return a new FileList with the results of running +sub+ against each - # element of the oringal list. + # element of the orignal list. # # Example: # FileList['a.c', 'b.c'].sub(/\.c$/, '.o') => ['a.o', 'b.o'] @@ -263,8 +263,8 @@ def pathmap(spec=nil) collect { |fn| fn.pathmap(spec) } end - # Return a new FileList with String#ext method applied - # to each member of the array. + # Return a new FileList with String#ext method applied to + # each member of the array. # # This method is a shortcut for: #