summaryrefslogtreecommitdiffstats
path: root/lib/pathname.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-14 14:36:50 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-14 14:36:50 +0000
commitd75b35797454677a4be03663a6f46dfec9ba0aea (patch)
treeb63e22af1767048b2f020af7b73f999e40b32d1d /lib/pathname.rb
parentf0c66df547b197dc65ed75789cbc689ba2b896a4 (diff)
downloadruby-d75b35797454677a4be03663a6f46dfec9ba0aea.tar.gz
ruby-d75b35797454677a4be03663a6f46dfec9ba0aea.tar.xz
ruby-d75b35797454677a4be03663a6f46dfec9ba0aea.zip
trailing space removed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19344 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/pathname.rb')
-rw-r--r--lib/pathname.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/pathname.rb b/lib/pathname.rb
index 7bee22b58..45974545a 100644
--- a/lib/pathname.rb
+++ b/lib/pathname.rb
@@ -43,7 +43,7 @@
# base = p.basename # Pathname:ruby
# dir, base = p.split # [Pathname:/usr/bin, Pathname:ruby]
# data = p.read
-# p.open { |f| _ }
+# p.open { |f| _ }
# p.each_line { |line| _ }
#
# === Example 2: Using standard Ruby
@@ -55,7 +55,7 @@
# base = File.basename(p) # "ruby"
# dir, base = File.split(p) # ["/usr/bin", "ruby"]
# data = File.read(p)
-# File.open(p) { |f| _ }
+# File.open(p) { |f| _ }
# File.foreach(p) { |line| _ }
#
# === Example 3: Special features
@@ -71,7 +71,7 @@
# p5.cleanpath # Pathname:articles
# p5.realpath # Pathname:/home/gavin/articles
# p5.children # [Pathname:/home/gavin/articles/linux, ...]
-#
+#
# == Breakdown of functionality
#
# === Core methods
@@ -452,7 +452,7 @@ class Pathname
# Returns a real (absolute) pathname of +self+ in the actual filesystem.
# The real pathname doesn't contain symlinks or useless dots.
#
- # No arguments should be given; the old behaviour is *obsoleted*.
+ # No arguments should be given; the old behaviour is *obsoleted*.
#
def realpath
path = @path
@@ -587,7 +587,7 @@ class Pathname
# p2 = p1 + "bin/ruby" # Pathname:/usr/bin/ruby
# p3 = p1 + "/etc/passwd" # Pathname:/etc/passwd
#
- # This method doesn't access the file system; it is pure string manipulation.
+ # This method doesn't access the file system; it is pure string manipulation.
#
def +(other)
other = Pathname.new(other) unless Pathname === other