Skip to content

Commit 9e52385

Browse files
committed
Minor editorial change: rename procedure
Avoid code style warning.
1 parent 1c61d05 commit 9e52385

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/courses/advanced-ada/parts/data_types/numerics.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4858,7 +4858,7 @@ range at the same time. For example:
48584858

48594859
with Ada.Text_IO; use Ada.Text_IO;
48604860

4861-
procedure Show_Decimal_Fixed_Point_Subtype_Range is
4861+
procedure Show_Decimal_Subtype_Range is
48624862

48634863
type D6 is
48644864
delta 1.0 digits 6;
@@ -4882,7 +4882,7 @@ range at the same time. For example:
48824882
& D6_R5'First'Image
48834883
& " .. "
48844884
& D6_R5'Last'Image);
4885-
end Show_Decimal_Fixed_Point_Subtype_Range;
4885+
end Show_Decimal_Subtype_Range;
48864886

48874887
Now, :ada:`D6_RD3` and :ada:`D6_R5` are subtypes of the :ada:`D6` type, which
48884888
has a range between -999,999.0 to 999,999.0. For these subtypes, we use the

0 commit comments

Comments
 (0)