Skip to content

Commit 17f70c9

Browse files
committed
Fix typo
1 parent ddbefc5 commit 17f70c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Generics/generics.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ \section{Miscellaneous Types}
17311731
let myPets: Array = ["Zelda", "Giblet"]
17321732
\end{Verbatim}
17331733
\index{underlying type}
1734-
One other place where unbound generic types can appear is in the underlying type of a non-generic type alias, which is shorthand for declaring a generic type alias that forwards its generic arguments. For example, the following declarations two are equivalent:
1734+
One other place where unbound generic types can appear is in the underlying type of a non-generic type alias, which is shorthand for declaring a generic type alias that forwards its generic arguments. For example, the following two declarations are equivalent:
17351735
\begin{Verbatim}
17361736
typealias MyDictionary = Dictionary
17371737
typealias MyDictionary<Key, Value> = Dictionary<Key, Value>

0 commit comments

Comments
 (0)