Skip to content

Commit cbec718

Browse files
Incorporate changes
1 parent e14ad39 commit cbec718

File tree

3 files changed

+20
-18
lines changed

3 files changed

+20
-18
lines changed

courses/fundamentals_of_ada/050_array_types/01-introduction.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@ Introduction
66
What Is an Array?
77
-------------------
88

9-
* Definition: collection of elements of the same type, stored in contiguous memory, and indexed using a discrete range
9+
* Definition: collection of components of the same type, stored in contiguous memory, and indexed using a discrete range
1010

1111
* Syntax (simplified):
1212

13-
``type <typename> is array (<index type>) of <component type>``
13+
.. container:: latex_environment small
14+
15+
:ada:`type <typename> is array (Index_Type) of Component_Type;`
1416

1517
where
1618

17-
* :dfn:`Index type`
19+
* :dfn:`Index_Type`
1820

1921
- Discrete range of values to be used to access the array components
2022

21-
* :dfn:`Component type`
23+
* :dfn:`Component_Type`
2224

2325
- Type of values stored in the array
2426
- All components are of this same type and size

images/array_diagram.svg

Lines changed: 13 additions & 13 deletions
Loading

support_files/beamercolorthemeadacore.sty

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
\mode<presentation>
1111

1212
\definecolor{adacore1}{RGB}{18,40,76} %% lovelace blue #12284c
13-
\definecolor{adacore2}{RGB}{224,124,0} %% orange #e07c0
13+
\definecolor{adacore2}{RGB}{224,124,0} %% orange #e07c00
1414
\definecolor{adacore3}{RGB}{185,198,215} %% light blue #b9c6d7
1515
\definecolor{lightyellow}{RGB}{240,230,160}
1616

0 commit comments

Comments
 (0)