Skip to content

Commit 5673304

Browse files
committed
Fix
1 parent 96ade6a commit 5673304

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

maths/volume.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def vol_right_circ_cone(radius: float, height: float) -> float:
259259

260260

261261
def vol_prism(area_of_base: float, height: float) -> float:
262-
"""
262+
r"""
263263
| Calculate the Volume of a Prism.
264264
| Wikipedia reference: https://en.wikipedia.org/wiki/Prism_(geometry)
265265
@@ -370,7 +370,7 @@ def vol_hemisphere(radius: float) -> float:
370370

371371

372372
def vol_circular_cylinder(radius: float, height: float) -> float:
373-
"""
373+
r"""
374374
| Calculate the Volume of a Circular Cylinder.
375375
| Wikipedia reference: https://en.wikipedia.org/wiki/Cylinder
376376
@@ -480,7 +480,7 @@ def vol_conical_frustum(height: float, radius_1: float, radius_2: float) -> floa
480480

481481

482482
def vol_torus(torus_radius: float, tube_radius: float) -> float:
483-
"""
483+
r"""
484484
| Calculate the Volume of a Torus.
485485
| Wikipedia reference: https://en.wikipedia.org/wiki/Torus
486486

0 commit comments

Comments
 (0)