Skip to content

Commit ef3fa5a

Browse files
committed
Changed the warning about unused variables
1 parent 65936cf commit ef3fa5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/checks/organization/octopus_unused_variables_check.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ func (o *OctopusUnusedVariablesCheck) Execute(concurrency int) (checks.OctopusCh
138138
}
139139

140140
return checks.NewOctopusCheckResultImpl(
141-
"The following variables may be unused (note there are edge cases octolint can't detect, so double check these before deleting them): \n"+strings.Join(messages, "\n"),
141+
"The following variables may be unused (note there are edge cases that may use these variables that can't be detected, so double check these before deleting them): \n"+strings.Join(messages, "\n"),
142142
o.Id(),
143143
"",
144144
checks.Warning,

0 commit comments

Comments
 (0)