diff options
author | amitkumarsuroliya <amitkumarsuroliya@gmail.com> | 2015-09-24 07:53:53 +0530 |
---|---|---|
committer | amitkumarsuroliya <amitkumarsuroliya@gmail.com> | 2015-09-24 17:57:37 +0530 |
commit | 4a2bac24aa1830c4feee507da6b55fd04ec453ed (patch) | |
tree | ab7c2edc0aa5a38db30153cebb2f9502f46e635c | |
parent | 8516d76c621bb679666f6c452a052c84feed11c4 (diff) | |
download | rails-4a2bac24aa1830c4feee507da6b55fd04ec453ed.tar.gz rails-4a2bac24aa1830c4feee507da6b55fd04ec453ed.tar.bz2 rails-4a2bac24aa1830c4feee507da6b55fd04ec453ed.zip |
Improve readability of docs by using code tag [ci skip]
-rw-r--r-- | activesupport/lib/active_support/core_ext/object/inclusion.rb | 4 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/object/try.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/inclusion.rb b/activesupport/lib/active_support/core_ext/object/inclusion.rb index 55f281b213..d4c17dfb07 100644 --- a/activesupport/lib/active_support/core_ext/object/inclusion.rb +++ b/activesupport/lib/active_support/core_ext/object/inclusion.rb @@ -5,7 +5,7 @@ class Object # characters = ["Konata", "Kagami", "Tsukasa"] # "Konata".in?(characters) # => true # - # This will throw an ArgumentError if the argument doesn't respond + # This will throw an +ArgumentError+ if the argument doesn't respond # to +#include?+. def in?(another_object) another_object.include?(self) @@ -18,7 +18,7 @@ class Object # # params[:bucket_type].presence_in %w( project calendar ) # - # This will throw an ArgumentError if the argument doesn't respond to +#include?+. + # This will throw an +ArgumentError+ if the argument doesn't respond to +#include?+. # # @return [Object] def presence_in(another_object) diff --git a/activesupport/lib/active_support/core_ext/object/try.rb b/activesupport/lib/active_support/core_ext/object/try.rb index c67eb25b68..8c16d95b62 100644 --- a/activesupport/lib/active_support/core_ext/object/try.rb +++ b/activesupport/lib/active_support/core_ext/object/try.rb @@ -94,7 +94,7 @@ class Object # :call-seq: # try!(*a, &b) # - # Same as #try, but raises a NoMethodError exception if the receiver is + # Same as #try, but raises a +NoMethodError+ exception if the receiver is # not +nil+ and does not implement the tried method. # # "a".try!(:upcase) # => "A" |