Skip to content

Commit

Permalink
Fix references in helpers documentation
Browse files Browse the repository at this point in the history
These references broke when we moved the helpers to their own module.
  • Loading branch information
tombruijn committed Oct 24, 2023
1 parent bd15ec2 commit 40a1520
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/appsignal/helpers/instrumentation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module Instrumentation # rubocop:disable Metrics/ModuleLength

# Creates an AppSignal transaction for the given block.
#
# If AppSignal is not {.active?} it will still execute the block, but not
# create a transaction for it.
# If AppSignal is not {Appsignal.active?} it will still execute the
# block, but not create a transaction for it.
#
# A event is created for this transaction with the name given in the
# `name` argument. The event name must start with either `perform_job` or
Expand Down Expand Up @@ -112,7 +112,7 @@ def monitor_single_transaction(name, env = {}, &block)
# transaction. Does not add the error to the current transaction.
#
# Make sure that AppSignal is integrated in your application beforehand.
# AppSignal won't record errors unless {Config#active?} is `true`.
# AppSignal won't record errors unless {Appsignal.active?} is `true`.
#
# @example
# # my_app.rb
Expand Down

0 comments on commit 40a1520

Please sign in to comment.