Skip to content

Commit 2f0dc0b

Browse files
committed
Editorial change: correcting terminology
1 parent c4df164 commit 2f0dc0b

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
@@ -973,7 +973,7 @@ are universal fixed types.
973973

974974
It's possible to implement custom :ada:`*` and :ada:`/` operators for
975975
fixed-point types. However, those operators do **not** override the
976-
corresponding operators for universal fixed-point types. For example:
976+
corresponding operators for universal fixed types. For example:
977977

978978
.. code:: ada run_button project=Courses.Advanced_Ada.Data_Types.Numerics.Universal_Types.Fixed_Point_Custom_Multiplication
979979

@@ -1060,7 +1060,7 @@ are universal fixed types.
10601060
operator, we're indeed overriding the default :ada:`+` operator of the
10611061
:ada:`TQ31` type in the :ada:`Normalized_Fixed_Point_Types` because the
10621062
addition operator is associated with its corresponding fixed-point type,
1063-
not with the universal fixed-point type. In the
1063+
not with the universal fixed type. In the
10641064
:ada:`Q31_A := Q31_A * Q31_B` statement, we see at runtime (through the
10651065
"=> Custom non-overriding '*'" message) that the custom
10661066
multiplication is being used.

0 commit comments

Comments
 (0)