lib/tapioca/dsl/compilers/config.rb in tapioca-0.10.1 vs lib/tapioca/dsl/compilers/config.rb in tapioca-0.10.2
- old
+ new
@@ -81,17 +81,17 @@
method_names.each do |method_name|
# Create getter method
mod.create_method(
method_name.to_s,
- return_type: "T.untyped"
+ return_type: "T.untyped",
)
# Create setter method
mod.create_method(
"#{method_name}=",
parameters: [create_param("value", type: "T.untyped")],
- return_type: "T.untyped"
+ return_type: "T.untyped",
)
end
end
end