Skip to content

Commit 1c61d05

Browse files
committed
Minor editorial change
1 parent 618d0d2 commit 1c61d05

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4819,8 +4819,10 @@ same time |mdash| as we can do with floating-point types. For example:
48194819

48204820
type D6 is
48214821
delta 1.0 digits 6;
4822+
48224823
type D6_RD3 is new D6
48234824
range -999.0 .. 999.0;
4825+
48244826
type D6_R5 is new D6
48254827
range -5.0 .. 5.0;
48264828

@@ -4860,10 +4862,13 @@ range at the same time. For example:
48604862

48614863
type D6 is
48624864
delta 1.0 digits 6;
4865+
48634866
subtype D6_RD3 is D6
48644867
range -999.0 .. 999.0;
4868+
48654869
subtype D6_R5 is D6
48664870
range -5.0 .. 5.0;
4871+
48674872
begin
48684873
Put_Line ("D6'Range : "
48694874
& D6'First'Image

0 commit comments

Comments
 (0)