Replace all occurrences of '<tt>(\w+::\w+::\w+)</tt>' with '+$1+'

E.g.:

* <tt>Rails::Command::NotesCommand</tt> -> +Rails::Command::NotesCommand+

Co-authored-by: Hartley McGuire <skipkayhil@gmail.com>
This commit is contained in:
zzak 2023-05-25 06:56:17 +09:00
parent e3c73fd183
commit 38bef29064
No known key found for this signature in database
GPG Key ID: 213927DFCF4FF102
14 changed files with 14 additions and 14 deletions

@ -9,7 +9,7 @@ module SubscriptionAdapter
#
# To use the test adapter set +adapter+ value to +test+ in your +config/cable.yml+ file.
#
# NOTE: Test adapter extends the <tt>ActionCable::SubscriptionAdapter::Async</tt> adapter,
# NOTE: Test adapter extends the +ActionCable::SubscriptionAdapter::Async+ adapter,
# so it could be used in system tests too.
class Test < Async
def broadcast(channel, payload)

@ -440,7 +440,7 @@ module ActionMailer
# * <tt>:openssl_verify_mode</tt> - When using TLS, you can set how OpenSSL checks the certificate. This is
# really useful if you need to validate a self-signed and/or a wildcard certificate. You can use the name
# of an OpenSSL verify constant (<tt>'none'</tt> or <tt>'peer'</tt>) or directly the constant
# (<tt>OpenSSL::SSL::VERIFY_NONE</tt> or <tt>OpenSSL::SSL::VERIFY_PEER</tt>).
# (+OpenSSL::SSL::VERIFY_NONE+ or +OpenSSL::SSL::VERIFY_PEER+).
# * <tt>:ssl/:tls</tt> Enables the SMTP connection to use SMTP/TLS (SMTPS: SMTP over direct TLS connection)
# * <tt>:open_timeout</tt> Number of seconds to wait while attempting to open a connection.
# * <tt>:read_timeout</tt> Number of seconds to wait until timing-out a read(2) call.

@ -40,7 +40,7 @@ def enqueue_at(job, timestamp) # :nodoc:
# Builds a +QC::Queue+ object to schedule jobs on.
#
# If you have a custom +QC::Queue+ subclass you'll need to subclass
# <tt>ActiveJob::QueueAdapters::QueueClassicAdapter</tt> and override the
# +ActiveJob::QueueAdapters::QueueClassicAdapter+ and override the
# <tt>build_queue</tt> method.
def build_queue(queue_name)
QC::Queue.new(queue_name)

@ -13,7 +13,7 @@ code from Rails, or monkey patch entire helpers to make them handle objects
that did not exactly conform to the Active Record interface. This would result
in code duplication and fragile applications that broke on upgrades. Active
Model solves this by defining an explicit API. You can read more about the
API in <tt>ActiveModel::Lint::Tests</tt>.
API in +ActiveModel::Lint::Tests+.
Active Model provides a default module that implements the basic API required
to integrate with Action Pack out of the box: ActiveModel::API.

@ -5,7 +5,7 @@ module Lint
# == Active \Model \Lint \Tests
#
# You can test whether an object is compliant with the Active \Model API by
# including <tt>ActiveModel::Lint::Tests</tt> in your TestCase. It will
# including +ActiveModel::Lint::Tests+ in your TestCase. It will
# include tests that tell you whether your object is fully compliant,
# or if not, which aspects of the API are not implemented.
#

@ -7,7 +7,7 @@ module Validations
# Provides an interface for any class to have ClassMethods#before_validation and
# ClassMethods#after_validation callbacks.
#
# First, include <tt>ActiveModel::Validations::Callbacks</tt> from the class you are
# First, include +ActiveModel::Validations::Callbacks+ from the class you are
# creating:
#
# class MyModel

@ -19,7 +19,7 @@ module Associations
# Associations in Active Record are middlemen between the object that
# holds the association, known as the <tt>owner</tt>, and the associated
# result set, known as the <tt>target</tt>. Association metadata is available in
# <tt>reflection</tt>, which is an instance of <tt>ActiveRecord::Reflection::AssociationReflection</tt>.
# <tt>reflection</tt>, which is an instance of +ActiveRecord::Reflection::AssociationReflection+.
#
# For example, given
#

@ -9,7 +9,7 @@ module Locking
# it was opened, an ActiveRecord::StaleObjectError exception is thrown if that has occurred
# and the update is ignored.
#
# Check out <tt>ActiveRecord::Locking::Pessimistic</tt> for an alternative.
# Check out +ActiveRecord::Locking::Pessimistic+ for an alternative.
#
# == Usage
#

@ -531,7 +531,7 @@ def initialize
# the migration is moving down.
#
# For a list of commands that are reversible, please see
# <tt>ActiveRecord::Migration::CommandRecorder</tt>.
# +ActiveRecord::Migration::CommandRecorder+.
#
# == Transactional Migrations
#

@ -4,7 +4,7 @@ module ActiveRecord
class Migration
# = \Migration Command Recorder
#
# <tt>ActiveRecord::Migration::CommandRecorder</tt> records commands done during
# +ActiveRecord::Migration::CommandRecorder+ records commands done during
# a migration and knows how to reverse those commands. The CommandRecorder
# knows how to invert the following commands:
#

@ -27,7 +27,7 @@ module ActiveSupport
# crypt.decrypt_and_verify(encrypted_data) # => "my secret data"
#
# The +decrypt_and_verify+ method will raise an
# <tt>ActiveSupport::MessageEncryptor::InvalidMessage</tt> exception if the data
# +ActiveSupport::MessageEncryptor::InvalidMessage+ exception if the data
# provided cannot be decrypted or verified.
#
# crypt.decrypt_and_verify('not encrypted data') # => ActiveSupport::MessageEncryptor::InvalidMessage

@ -70,7 +70,7 @@ module ActiveSupport
#
# Messages can then be verified and returned until expiry.
# Thereafter, the +verified+ method returns +nil+ while +verify+ raises
# <tt>ActiveSupport::MessageVerifier::InvalidSignature</tt>.
# +ActiveSupport::MessageVerifier::InvalidSignature+.
#
# === Rotating keys
#

@ -44,7 +44,7 @@ module Paths
# root["app/controllers"].expanded # => ["/rails/app/controllers"]
# root["app/controllers"].existent # => ["/rails/app/controllers"]
#
# Check the <tt>Rails::Paths::Path</tt> documentation for more information.
# Check the +Rails::Paths::Path+ documentation for more information.
class Root
attr_accessor :path

@ -3,7 +3,7 @@
require "ripper"
module Rails
# Implements the logic behind <tt>Rails::Command::NotesCommand</tt>. See <tt>rails notes --help</tt> for usage information.
# Implements the logic behind +Rails::Command::NotesCommand+. See <tt>rails notes --help</tt> for usage information.
#
# Annotation objects are triplets <tt>:line</tt>, <tt>:tag</tt>, <tt>:text</tt> that
# represent the line where the annotation lives, its tag, and its text. Note