From 3ead9c13970b3e1ffb7aababe7d8a6a46fb99ce4 Mon Sep 17 00:00:00 2001
From: Mark McGranaghan <mmcgrana@gmail.com>
Date: Fri, 26 Oct 2012 07:33:45 -0700
Subject: [PATCH] consistent

---
 examples/interfaces/interfaces.go | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/examples/interfaces/interfaces.go b/examples/interfaces/interfaces.go
index f22721f..20e6020 100644
--- a/examples/interfaces/interfaces.go
+++ b/examples/interfaces/interfaces.go
@@ -53,8 +53,9 @@ func main() {
     s := square{width: 3, height: 4}
     c := circle{radius: 5}
 
-    // The `circle` and `square` struct types both satisfy
-    // the `geometry` interface so we can use instances of
+    // The `circle` and `square` struct types both
+    // implement the `geometry` interface so we can use
+    // instances of
     // these structs as arguments to `measure.
     measure(s)
     measure(c)