about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorBastian Kauschke <bastian_kauschke@hotmail.de>2020-03-19 19:57:12 +0100
committerGitHub <noreply@github.com>2020-03-20 03:57:12 +0900
commitccefce6ccf2d404230518342d1719708f55671c1 (patch)
tree10e63160a4cdc90e62be61fd62492bf8d6315779 /src/doc/rustc-dev-guide
parente9c48f2bb9f2ca30878f7da2dd0a18edd121ee19 (diff)
downloadrust-ccefce6ccf2d404230518342d1719708f55671c1.tar.gz
rust-ccefce6ccf2d404230518342d1719708f55671c1.zip
words (#622)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/ty.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/ty.md b/src/doc/rustc-dev-guide/src/ty.md
index bb2c24b13b2..a4274bc9f55 100644
--- a/src/doc/rustc-dev-guide/src/ty.md
+++ b/src/doc/rustc-dev-guide/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`.