Skip to content

Commit e27c419

Browse files
committed
Add nodoc to Arel filter classes.
- this makes it consistent with other Arel files
1 parent 90cba59 commit e27c419

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

activerecord/lib/arel/filter_predications.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
module Arel
3+
module Arel # :nodoc: all
44
module FilterPredications
55
def filter(expr)
66
Nodes::Filter.new(self, expr)

activerecord/lib/arel/nodes/filter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
module Arel
3+
module Arel # :nodoc: all
44
module Nodes
55
class Filter < Binary
66
include Arel::WindowPredications

0 commit comments

Comments
 (0)