Skip to content

Commit 5dd5720

Browse files
committed
Fix ruby
1 parent 818125b commit 5dd5720

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/ruby/lib/container/query.rb.twig

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ module {{spec.title | caseUcfirst}}
3333
return "isNotNull(\"#{attribute}\")"
3434
end
3535

36-
def between(attribute, start, end)
37-
return "between(\"#{attribute}\", #{parse_values(start)}, #{parse_values(end)})"
36+
def between(attribute, start, ending)
37+
return "between(\"#{attribute}\", #{parse_values(start)}, #{parse_values(ending)})"
3838
end
3939

4040
def starts_with(attribute, value)

0 commit comments

Comments
 (0)