From 3b1dc7307e731639c5689dcd3a4dea4b425ab9b2 Mon Sep 17 00:00:00 2001 From: Bastian Kauschke Date: Thu, 19 Mar 2020 19:57:12 +0100 Subject: [PATCH] words (#622) --- src/ty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ty.md b/src/ty.md index bb2c24b1..a4274bc9 100644 --- a/src/ty.md +++ b/src/ty.md @@ -181,7 +181,7 @@ Here is a sampling: [**Algebraic Data Types (ADTs)**]() An [*algebraic Data Type*][wikiadt] is a `struct`, `enum` or `union`. Under the hood, `struct`, `enum` and `union` are actually implemented the same way: they -are both [`ty::TyKind::Adt`][kindadt]. It’s basically a user defined type. We will talk more about +are all [`ty::TyKind::Adt`][kindadt]. It’s basically a user defined type. We will talk more about these later. [**Foreign**][kindforeign] Corresponds to `extern type T`.