From 21dbe6f39b57f52967e92716dbd5e2b894e7a64c Mon Sep 17 00:00:00 2001 From: Kuldeep Aggarwal Date: Mon, 21 Apr 2014 00:44:52 +0530 Subject: [PATCH] [ci-skip] correct the classify example's output --- activesupport/lib/active_support/inflector/methods.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/lib/active_support/inflector/methods.rb b/activesupport/lib/active_support/inflector/methods.rb index 94bda511bc..eba2c2bbdb 100644 --- a/activesupport/lib/active_support/inflector/methods.rb +++ b/activesupport/lib/active_support/inflector/methods.rb @@ -155,7 +155,7 @@ def tableize(class_name) # # Singular names are not handled correctly: # - # 'business'.classify # => "Busines" + # 'business'.classify # => "Business" def classify(table_name) # strip out any leading schema name camelize(singularize(table_name.to_s.sub(/.*\./, ''))) -- GitLab