1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix a typo in Pathname#blank? documentation [ci-skip]

This commit is contained in:
Jean Boussier 2022-02-20 17:34:28 +01:00 committed by GitHub
parent 13d75c40fd
commit c9c1768a91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ class Pathname
# #
# Pathname.new("").blank? # => true # Pathname.new("").blank? # => true
# Pathname.new(" ").blank? # => false # Pathname.new(" ").blank? # => false
# Pathname.new("test).blank? # => false # Pathname.new("test").blank? # => false
# #
# @return [true, false] # @return [true, false]
def blank? def blank?