1
0
mirror of https://github.com/meineerde/rackstash.git synced 2026-02-11 13:05:19 +00:00

Fix @return documentation tag for Rackstash::Filters::SkipEvent#call

This commit is contained in:
Holger Just 2017-07-19 11:09:32 +02:00
parent 9950d783cf
commit b72b8cf94b

View File

@ -35,7 +35,7 @@ module Rackstash
# filter does not change the `event` hash in any way on its own.
#
# @param event [Hash] an event hash
# return [Hash, false] the given `event` or `false` if the `skip_if`
# @return [Hash, false] the given `event` or `false` if the `skip_if`
# condition was evaluated
def call(event)
return false if @skip_if.call(event)