Skip to content

Commit

Permalink
Added missing @see tags to IPRange methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Feb 10, 2024
1 parent 7e77306 commit 2b0f3b6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/ronin/support/network/ip_range.rb
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ def self.glob?(string)
#
# @return [String]
#
# @see CIDR#string
# @see Glob#string
#
def string
@range.string
end
Expand All @@ -190,6 +193,9 @@ def string
#
# @return [Boolean]
#
# @see CIDR#ipv4?
# @see Glob#ipv4?
#
def ipv4?
@range.ipv4?
end
Expand All @@ -199,6 +205,9 @@ def ipv4?
#
# @return [Boolean]
#
# @see CIDR#ipv6?
# @see Glob#ipv6?
#
def ipv6?
@range.ipv6?
end
Expand Down

0 comments on commit 2b0f3b6

Please sign in to comment.