Skip to content

Commit

Permalink
Fix @see references
Browse files Browse the repository at this point in the history
  • Loading branch information
cllns committed Jun 27, 2024
1 parent 3b508d6 commit 92d3f25
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions lib/hanami/action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ class Action
#
# @return [Config]
#
# @api public
# @since 2.0.0
# @api public

# @!scope instance

Expand Down Expand Up @@ -145,7 +145,7 @@ def self.params(_klass = nil)
#
# @since 0.3.2
#
# @see Hanami::Action::Callbacks::ClassMethods#append_after
# @see #append_after
#
# @example Method names (symbols)
# require "hanami/controller"
Expand Down Expand Up @@ -212,7 +212,7 @@ class << self
#
# @since 0.3.2
#
# @see Hanami::Action::Callbacks::ClassMethods#append_before
# @see #append_before
def self.append_after(...)
config.after_callbacks.append(...)
end
Expand All @@ -236,7 +236,7 @@ class << self
#
# @since 0.3.2
#
# @see Hanami::Action::Callbacks::ClassMethods#prepend_after
# @see #prepend_after
def self.prepend_before(...)
config.before_callbacks.prepend(...)
end
Expand All @@ -255,7 +255,7 @@ def self.prepend_before(...)
#
# @since 0.3.2
#
# @see Hanami::Action::Callbacks::ClassMethods#prepend_before
# @see #prepend_before
def self.prepend_after(...)
config.after_callbacks.prepend(...)
end
Expand Down
6 changes: 3 additions & 3 deletions lib/hanami/action/cache.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ class Action
#
# @since 0.3.0
#
# @see Hanami::Action::Cache::ClassMethods#cache_control
# @see Hanami::Action::Cache::ClassMethods#expires
# @see Hanami::Action::Cache::ClassMethods#fresh
# @see Hanami::Action::Response#cache_control
# @see Hanami::Action::Response#expires
# @see Hanami::Action::Response#fresh
module Cache
# Override Ruby's hook for modules.
# It includes exposures logic
Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/action/cookies.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Action
#
# @since 0.1.0
#
# @see Hanami::Action::Cookies#cookies
# @see Hanami::Action::Response#cookies
module Cookies
private

Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/action/rack/file.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Rack
# @since 0.4.3
# @api private
#
# @see Hanami::Action::Rack#send_file
# @see Hanami::Action::Response#send_file
class File
# @param path [String,Pathname] file path
#
Expand Down

0 comments on commit 92d3f25

Please sign in to comment.