Remove a forgotten :nodoc:

This commit is contained in:
Jean Boussier 2024-02-14 14:27:27 +01:00
parent 4c4f6d07ab
commit e7217c0d23
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ module ActiveRecord
# Checkouts a connection from the pool, yield it and then check it back in.
# If a connection was already leased via #connection or a parent call to
# #with_connection, that same connection is yieled.
def with_connection(&block) # :nodoc:
def with_connection(&block)
connection_pool.with_connection(&block)
end