Skip to content

Commit c81f00b

Browse files
committed
More formatting
1 parent 91ed795 commit c81f00b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

benchmark/benchmarks.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ rules = (
1919
(name = "HAdaptiveCubature", rule = HAdaptiveCubature(), N = 500)
2020
)
2121
geometries = (
22-
(name = "Meshes.Segment", item = Segment(Point(0, 0, 0), Point(1, 1, 1))),
23-
(name = "Meshes.Sphere", item = Sphere(Point(0, 0, 0), 1.0))
22+
(name = "Segment", item = Segment(Point(0, 0, 0), Point(1, 1, 1))),
23+
(name = "Sphere", item = Sphere(Point(0, 0, 0), 1.0))
2424
)
2525

2626
SUITE["Integrals"] = let s = BenchmarkGroup()

src/specializations/Triangle.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ end
2525

2626
function _parametric(triangle::Meshes.Triangle, t1, t2)
2727
if (t1 < 0 || t1 > 1) || (t2 < 0 || t2 > 1)
28-
msg ="triangle(t1, t2) is not defined for (t1, t2) outside [0, 1]^2."
28+
msg = "triangle(t1, t2) is not defined for (t1, t2) outside [0, 1]^2."
2929
throw(DomainError((t1, t2), msg))
3030
end
3131

0 commit comments

Comments
 (0)