From 90edcb82c32b7eabc71af05676202d9a985f0a93 Mon Sep 17 00:00:00 2001 From: Masato Ohba Date: Wed, 10 Jul 2024 19:26:56 +0900 Subject: [PATCH] Fix typos (#2332) --- sentry-rails/lib/sentry/rails/railtie.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry-rails/lib/sentry/rails/railtie.rb b/sentry-rails/lib/sentry/rails/railtie.rb index ef09851c5..44dd450dc 100644 --- a/sentry-rails/lib/sentry/rails/railtie.rb +++ b/sentry-rails/lib/sentry/rails/railtie.rb @@ -12,7 +12,7 @@ class Railtie < ::Rails::Railtie app.config.middleware.insert_after ActionDispatch::DebugExceptions, Sentry::Rails::RescuedExceptionInterceptor end - # because the extension works by registering the around_perform callcack, it should always be ran + # because the extension works by registering the around_perform callback, it should always be run # before the application is eager-loaded (before user's jobs register their own callbacks) # See https://github.com/getsentry/sentry-ruby/issues/1249#issuecomment-853871871 for the detail explanation initializer "sentry.extend_active_job", before: :eager_load! do |app|