about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-08-23 06:06:52 +0000
committerbors <bors@rust-lang.org>2015-08-23 06:06:52 +0000
commitd530379df6ad5a43487dcfa3ea43c69b3b145940 (patch)
treedbc19488e3d880cc585ff5f5f969fbdb50605815
parente617a17369ef403268adcebc5e3e32a0bb5cf04c (diff)
parent9ea001d8e977603ed2dda53b7decc1f7dde49450 (diff)
downloadrust-d530379df6ad5a43487dcfa3ea43c69b3b145940.tar.gz
rust-d530379df6ad5a43487dcfa3ea43c69b3b145940.zip
Auto merge of #27922 - tshepang:dst-definition, r=alexcrichton
I am not sure this would work... I didn't test.
-rw-r--r--src/doc/trpl/glossary.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/doc/trpl/glossary.md b/src/doc/trpl/glossary.md
index 307aef80180..6a5a45fdb2c 100644
--- a/src/doc/trpl/glossary.md
+++ b/src/doc/trpl/glossary.md
@@ -38,6 +38,12 @@ let z = (8, 2, 6);
 
 In the example above `x` and `y` have arity 2. `z` has arity 3.
 
+### DST (Dynamically Sized Type)
+
+A type without a statically known size or alignment. ([more info][link])
+
+[link]: ../nomicon/exotic-sizes.html#dynamically-sized-types-(dsts)
+
 ### Expression
 
 In computer programming, an expression is a combination of values, constants,