Skip to content

Commit 67bcc1b

Browse files
committed
Correct typo in code example
1 parent d9e211e commit 67bcc1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

meta/rfc-improved-generic-instantiations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ function Sum (X: Float_Array) return Float is (Reduce (Fn => "+") (X))
7777
Also, regarding generic packages & types, we would like the following:
7878

7979
```ada
80-
package Float_Vectors
80+
package Positive_Vectors
8181
is new Ada.Containers.Vectors (Positive, Positive);
8282
83-
F : Float_Vectors.Vector;
84-
F2 : Float_Vectors.Vector;
83+
F : Positive_Vectors.Vector;
84+
F2 : Positive_Vectors.Vector;
8585
```
8686

8787
To be expressible this way:

0 commit comments

Comments
 (0)