@@ -355,7 +355,7 @@ class Config {
355355 /// finally the config file.
356356 ///
357357 /// For cli defines and environment variables, the value must be parseble
358- /// by [int.parse] .
358+ /// by [core. int.parse] .
359359 /// For the config file, it must be an integer.
360360 core.int int (String key) {
361361 final value = optionalInt (key);
@@ -369,7 +369,7 @@ class Config {
369369 /// finally the config file.
370370 ///
371371 /// For cli defines and environment variables, the value must be parseble
372- /// by [int.parse] .
372+ /// by [core. int.parse] .
373373 /// For the config file, it must be an integer or null.
374374 core.int ? optionalInt (String key) {
375375 core.int ? value;
@@ -385,7 +385,7 @@ class Config {
385385 /// finally the config file.
386386 ///
387387 /// For cli defines and environment variables, the value must be parseble
388- /// by [double.parse] .
388+ /// by [core. double.parse] .
389389 /// For the config file, it must be an double.
390390 core.double double (String key) {
391391 final value = optionalDouble (key);
@@ -399,7 +399,7 @@ class Config {
399399 /// finally the config file.
400400 ///
401401 /// For cli defines and environment variables, the value must be parseble
402- /// by [double.parse] .
402+ /// by [core. double.parse] .
403403 /// For the config file, it must be an double or null.
404404 core.double ? optionalDouble (String key) {
405405 core.double ? value;
0 commit comments