about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2013-12-06 12:13:00 -0500
committerCorey Richardson <corey@octayn.net>2013-12-10 09:43:36 -0500
commitb5122c52aefd05d4485864b2b6e01f41ddfbc483 (patch)
tree22a2d235d7b879bd702c863ad5c46234159656a0 /doc/tutorial.md
parentd9eff8de8a8455875dea40a3630856c9326bd576 (diff)
downloadrust-b5122c52aefd05d4485864b2b6e01f41ddfbc483.tar.gz
rust-b5122c52aefd05d4485864b2b6e01f41ddfbc483.zip
Clarify newtype
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index f10275cc351..5bd0d35895e 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -803,7 +803,7 @@ let id_int: int = *my_gizmo_id;
 ~~~~
 
 Types like this can be useful to differentiate between data that have
-the same type but must be used in different ways.
+the same underlying type but must be used in different ways.
 
 ~~~~
 struct Inches(int);