diff options
author | George Claghorn <george.claghorn@gmail.com> | 2017-08-25 16:54:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-25 16:54:20 -0400 |
commit | 3d5b9e0efb533d9d54ceaf68a476284566c2300c (patch) | |
tree | 3862c007b1c4b793fb885ecfed8b963edaca6383 | |
parent | e7d54ecca671ea55bc7bbd67b259c0ee2c38d70a (diff) | |
parent | 0196ac6654ce68d9b50695b09987ab4d8af750e3 (diff) | |
download | rails-3d5b9e0efb533d9d54ceaf68a476284566c2300c.tar.gz rails-3d5b9e0efb533d9d54ceaf68a476284566c2300c.tar.bz2 rails-3d5b9e0efb533d9d54ceaf68a476284566c2300c.zip |
Merge pull request #30413 from yhirano55/enable_links_in_active_storage_docs
Enable links in Active Storage docs [ci skip]
-rw-r--r-- | activestorage/app/models/active_storage/filename.rb | 2 | ||||
-rw-r--r-- | activestorage/app/models/active_storage/variation.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activestorage/app/models/active_storage/filename.rb b/activestorage/app/models/active_storage/filename.rb index c2ad5c844c..10b1116d52 100644 --- a/activestorage/app/models/active_storage/filename.rb +++ b/activestorage/app/models/active_storage/filename.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true # Encapsulates a string representing a filename to provide convenience access to parts of it and a sanitized version. -# This is what's returned by `ActiveStorage::Blob#filename`. A Filename instance is comparable so it can be used for sorting. +# This is what's returned by ActiveStorage::Blob#filename. A Filename instance is comparable so it can be used for sorting. class ActiveStorage::Filename include Comparable diff --git a/activestorage/app/models/active_storage/variation.rb b/activestorage/app/models/active_storage/variation.rb index f657d90db4..bf269e2a8f 100644 --- a/activestorage/app/models/active_storage/variation.rb +++ b/activestorage/app/models/active_storage/variation.rb @@ -3,7 +3,7 @@ require "active_support/core_ext/object/inclusion" # A set of transformations that can be applied to a blob to create a variant. This class is exposed via -# the `ActiveStorage::Blob#variant` method and should rarely be used directly. +# the ActiveStorage::Blob#variant method and should rarely be used directly. # # In case you do need to use this directly, it's instantiated using a hash of transformations where # the key is the command and the value is the arguments. Example: |