File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1355,12 +1355,12 @@ function configFunction(value: string): string {
13551355 return ' ' ;
13561356}
13571357
1358- // Cause typescript return `boolean` this will generate an type error
1358+ // Cause typescript returns `boolean` this will generate a type error
13591359if (is .not .undefined (config .a )) {
13601360 configFunction (config .a );
13611361}
13621362
1363- // Cause typescript return `value is boolean` this will not generate an error
1363+ // Cause typescript return `value is boolean` will not generate an error.
13641364if (! is .undefined (config .a )) {
13651365 configFunction (config .a );
13661366}
Original file line number Diff line number Diff line change @@ -1355,12 +1355,12 @@ function configFunction(value: string): string {
13551355 return ' ' ;
13561356}
13571357
1358- // Cause typescript return `boolean` this will generate an type error
1358+ // Cause typescript returns `boolean` this will generate a type error
13591359if (is .not .undefined (config .a )) {
13601360 configFunction (config .a );
13611361}
13621362
1363- // Cause typescript return `value is boolean` this will not generate an error
1363+ // Cause typescript return `value is boolean` will not generate an error.
13641364if (! is .undefined (config .a )) {
13651365 configFunction (config .a );
13661366}
You can’t perform that action at this time.
0 commit comments