Skip to content

Commit 4a722ef

Browse files
committed
minor: Lower upper-case character at start of messages
1 parent 8f7029b commit 4a722ef

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lkql_checker/src/gnatcheck-projects-aggregate.adb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ package body Gnatcheck.Projects.Aggregate is
202202
begin
203203
if Full_Tool_Name = null then
204204
Error
205-
("Cannot locate "
205+
("cannot locate "
206206
& Executable
207207
& " on PATH, possible installation problem");
208208
raise Fatal_Error;
@@ -344,7 +344,7 @@ package body Gnatcheck.Projects.Aggregate is
344344
Iterator_El := Element (Iterator_C);
345345
exception
346346
when others =>
347-
Error ("Cannot start iterator on aggregated projects");
347+
Error ("cannot start iterator on aggregated projects");
348348
raise Fatal_Error;
349349
end Start_Prj_Iterator;
350350

lkql_checker/src/gnatcheck-projects.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ package body Gnatcheck.Projects is
15901590
-- Check the correctness of setting custom name for text report file
15911591

15921592
if Custom_Text_Report_File and then not Text_Report_ON then
1593-
Error ("Custom text output file cannot be set if text output is off");
1593+
Error ("custom text output file cannot be set if text output is off");
15941594
raise Parameter_Error;
15951595
end if;
15961596

lkql_checker/src/gnatcheck-rules-rule_table.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ package body Gnatcheck.Rules.Rule_Table is
950950
-- Finally, check that the designated rule is not a compiler rule
951951
if Is_Compiler_Rule (Rule) then
952952
Error
953-
("Cannot enable a compiler based rule through the '--rule' CLI "
953+
("cannot enable a compiler based rule through the '--rule' CLI "
954954
& "option");
955955
Bad_Rule_Detected := True;
956956
return;

0 commit comments

Comments
 (0)