From 6a941ec602e6cce8af2c0c9bda14451e59d82046 Mon Sep 17 00:00:00 2001 From: Keshav Kini Date: Thu, 30 Jan 2014 08:36:49 -0600 Subject: [PATCH] Fix inconsistency in tutorial.md Text refers to "the type shown earlier", when the type in question was not in fact shown earlier. I assume this is an artifact of an earlier revision. --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index 9304badb1c6..ef1a9f8cab5 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -646,7 +646,7 @@ match mypoint { ## Enums Enums are datatypes that have several alternate representations. For -example, consider the type shown earlier: +example, consider the following type: ~~~~ # struct Point { x: f64, y: f64 }