From 3542f5dcdcd54559b84af8b43538c412b56efec6 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Tue, 27 Sep 2016 19:34:11 -0500
Subject: [PATCH] Fix comment in tesselate

---
 meshmode/mesh/tesselate.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meshmode/mesh/tesselate.py b/meshmode/mesh/tesselate.py
index 5d0e03ae..ce7145c6 100644
--- a/meshmode/mesh/tesselate.py
+++ b/meshmode/mesh/tesselate.py
@@ -27,8 +27,8 @@ def tesselatetri():
     if len(result) > 0:
         return [node_tuples, result]
     for current in node_tuples:
-        # this is a tesselation of a cube into six tets.
-        # subtets that fall outside of the master tet are simply not added.
+        # this is a tesselation of a square into two triangles.
+        # subtriangles that fall outside of the master tet are simply not added.
 
         # positively oriented
         try_add_tri(current, (0, 0), (1, 0), (0, 1))
-- 
GitLab