We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3941b4 commit 96cf4ccCopy full SHA for 96cf4cc
courses/fundamentals_of_ada/050_array_types/01-introduction.rst
@@ -10,7 +10,7 @@ What Is an Array?
10
11
* Syntax (simplified):
12
13
- ``type <typename> is array (<index type>) is of <component type>``
+ ``type <typename> is array (<index type>) of <component type>``
14
15
where
16
@@ -23,12 +23,12 @@ where
23
- Type of values stored in the array
24
- All components are of this same type and size
25
26
-.. image:: array_diagram.svg
27
-
28
.. code:: Ada
29
30
type Array_T is array (0 .. 3) of Interfaces.Integer_32;
31
+.. image:: array_diagram.svg
+
32
---------------
33
Arrays in Ada
34
0 commit comments