about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-15 14:11:37 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-15 14:11:37 -0800
commit7aa7707af9915c20b009573f32f7cc0c58e73b5c (patch)
treebfef4570cf7fd968aea6b18efa8036b23c010fbc
parent9d6e1f921bf5645dc734412b387fcc46646db53a (diff)
parent16a8c4d2382d72aa414d89192422187acd290270 (diff)
rollup merge of #21040: steveklabnik/gh20037
Fixes #20037.
-rw-r--r--src/doc/trpl/compound-data-types.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/compound-data-types.md b/src/doc/trpl/compound-data-types.md
index 7c96b9452f5..5ad9fcd41f5 100644
--- a/src/doc/trpl/compound-data-types.md
+++ b/src/doc/trpl/compound-data-types.md
@@ -182,7 +182,7 @@ and with a struct, we have actual names.
 
 There _is_ one case when a tuple struct is very useful, though, and that's a
 tuple struct with only one element. We call this a *newtype*, because it lets
-you create a new type that's a synonym for another one:
+you create a new type that's similar to another one:
 
 ```{rust}
 struct Inches(i32);