Fix wrong documentation for return value of Pathname#fnmatch by pocke · Pull Request #2923 · ruby/ruby

The document says it returns a string, but actually it returns true or false. $ ruby -rpathname -e 'p Pathname("foo.rb").fnmatch("*.rb")' true