Skip to content

Commit 8f58772

Browse files
committed
Typos
1 parent 8d261aa commit 8f58772

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test_recurrence_qbx.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ def _create_ellipse(n_p, mode_nr=10, quad_convg_rate=100, a=2):
120120
return sources, centers, normals, density, jacobs, radius
121121

122122

123-
def _create_sphere(refinment_rounds, exp_radius):
123+
def _create_sphere(refinement_rounds, exp_radius):
124124
target_order = 4
125125

126126
actx_m = _acf_meshmode()
127127
mesh = mgen.generate_sphere(1.0, target_order,
128-
uniform_refinement_rounds=refinment_rounds)
128+
uniform_refinement_rounds=refinement_rounds)
129129
grp_factory = default_simplex_group_factory(3, target_order)
130130
discr = Discretization(actx_m, mesh, grp_factory)
131131
nodes = actx_m.to_numpy(discr.nodes())
@@ -160,7 +160,7 @@ def test_compute_rotated_shifted_coordinates():
160160

161161
def test_recurrence_laplace_3d_sphere():
162162
r"""
163-
Tests reccurrence + qbx laplace 3d on sphere
163+
Tests recurrence + qbx laplace 3d on sphere
164164
"""
165165
radius = 0.0001
166166
sources, centers, normals, area_weight, radius = _create_sphere(1, radius)
@@ -184,7 +184,7 @@ def test_recurrence_laplace_3d_sphere():
184184

185185
def test_recurrence_helmholtz_3d_sphere():
186186
r"""
187-
Tests reccurrence + qbx helmholtz 3d on sphere
187+
Tests recurrence + qbx helmholtz 3d on sphere
188188
"""
189189
# import time
190190
radius = 0.0001

0 commit comments

Comments
 (0)