lib/tapioca/dsl/compilers/config.rb in tapioca-0.13.3 vs lib/tapioca/dsl/compilers/config.rb in tapioca-0.14.3
- old
+ new
@@ -64,10 +64,10 @@
return if method_names.empty?
root.create_constant(config_constant_name, value: "T.let(T.unsafe(nil), #{option_class_name})")
root.create_class(option_class_name, superclass_name: "::Config::Options") do |mod|
- # We need this to be generic only becuase `Config::Options` is an
+ # We need this to be generic only because `Config::Options` is an
# enumerable and, thus, needs to redeclare the `Elem` type member.
#
# We declare it as a fixed member of `T.untyped` so that if anyone
# enumerates the entries, we don't make any assumptions about their
# types.