From c9c1768a91c2b6e6ca68268ed87b3a7327ab81dd Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Sun, 20 Feb 2022 17:34:28 +0100 Subject: [PATCH] Fix a typo in `Pathname#blank?` documentation [ci-skip] --- activesupport/lib/active_support/core_ext/pathname/blank.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/lib/active_support/core_ext/pathname/blank.rb b/activesupport/lib/active_support/core_ext/pathname/blank.rb index a61994a356..68258c892a 100644 --- a/activesupport/lib/active_support/core_ext/pathname/blank.rb +++ b/activesupport/lib/active_support/core_ext/pathname/blank.rb @@ -7,7 +7,7 @@ class Pathname # # Pathname.new("").blank? # => true # Pathname.new(" ").blank? # => false - # Pathname.new("test).blank? # => false + # Pathname.new("test").blank? # => false # # @return [true, false] def blank?