From 82b61c7feba71d40663a33c8b8a37cebc0df655a Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Mon, 26 Oct 2015 10:08:07 -0500 Subject: [PATCH] Doc and boundary restriction fixes --- meshmode/discretization/connection.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meshmode/discretization/connection.py b/meshmode/discretization/connection.py index 569cd71e..089ddf13 100644 --- a/meshmode/discretization/connection.py +++ b/meshmode/discretization/connection.py @@ -130,8 +130,8 @@ class DiscretizationConnection(object): .. attribute:: groups - a list of :class:`MeshConnectionGroup` instances, with - a one-to-one correspondence to the groups in + a list of :class:`DiscretizationConnectionElementGroup` + instances, with a one-to-one correspondence to the groups in :attr:`to_discr`. .. automethod:: __call__ @@ -541,7 +541,7 @@ def make_face_restriction(discr, group_factory, boundary_tag): continue group_boundary_faces.extend( - zip(bdry_grp.elements, bdry_grp.element_faces)) + zip(fagrp.elements, fagrp.element_faces)) # }}} -- GitLab