Skip to content

Commit d099a04

Browse files
committed
Correct docstring of 'Error', 'Warning' and 'Info' functions
1 parent 2bae674 commit d099a04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lkql_checker/src/gnatcheck-output.ads

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ package Gnatcheck.Output is
4242
-- Reports that a required file could not be found
4343

4444
procedure Error (Message : String);
45-
-- Sends into Stderr the error message in the form 'Tool_Name: Message'
45+
-- Sends ``Message`` into stderr, prefixed by "tool_name: error: ".
4646

4747
procedure Warning (Message : String);
48-
-- Same as ``Error``
48+
-- Sends ``Message`` into stderr, prefixed by "tool_name: warning: ".
4949

5050
procedure Info (Message : String);
51-
-- Sends Message into Stderr (with no tool name prefix).
51+
-- Sends ``Message`` into stderr, prefixed by "tool_name: info: ".
5252

5353
procedure Info_In_Tty (Message : String);
5454
-- Same as ``Info`` but send the message only if Stderr is a TTY. Also,

0 commit comments

Comments
 (0)