diff --git a/lib/src/async_environment.dart b/lib/src/async_environment.dart index 5313d8c45..371d68faf 100644 --- a/lib/src/async_environment.dart +++ b/lib/src/async_environment.dart @@ -782,8 +782,6 @@ final class AsyncEnvironment { var values = _variables[i]; var nodes = _variableNodes[i]; for (var (name, value) in values.pairs) { - // Implicit configurations are never invalid, making [configurationSpan] - // unnecessary, so we pass null here to avoid having to compute it. configuration[name] = ConfiguredValue.implicit(value, nodes[name]!); } } diff --git a/lib/src/configuration.dart b/lib/src/configuration.dart index 2bb069480..8cf380f4b 100644 --- a/lib/src/configuration.dart +++ b/lib/src/configuration.dart @@ -46,7 +46,7 @@ final class Configuration { /// An implicit configuration will always return `false` because it was not /// created through another configuration. /// - /// [ExplicitConfiguration]s will and configurations created [throughForward] + /// [ExplicitConfiguration]s and configurations created [throughForward] /// will be considered to have the same original config if they were created /// as a copy from the same base configuration. bool sameOriginal(Configuration that) => diff --git a/lib/src/environment.dart b/lib/src/environment.dart index 3aa0fa45d..19a76c550 100644 --- a/lib/src/environment.dart +++ b/lib/src/environment.dart @@ -788,8 +788,6 @@ final class Environment { var values = _variables[i]; var nodes = _variableNodes[i]; for (var (name, value) in values.pairs) { - // Implicit configurations are never invalid, making [configurationSpan] - // unnecessary, so we pass null here to avoid having to compute it. configuration[name] = ConfiguredValue.implicit(value, nodes[name]!); } }