Skip to content

Commit 9bd3c3f

Browse files
committed
fixing typos
1 parent 9fb47fa commit 9bd3c3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

electronics/star_delta_transform.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
def delta_to_wye(r: list) -> dict:
2222
"""
23-
>>> from_delta_to_wye([2.0, 3.0, 4.0])
23+
>>> delta_to_wye([2.0, 3.0, 4.0])
2424
{'r1': 1.3333333333333333, 'r2': 0.8888888888888888, 'r3': 0.6666666666666666}
2525
"""
2626
r_wye: dict = {}
@@ -33,7 +33,7 @@ def delta_to_wye(r: list) -> dict:
3333

3434
def wye_to_delta(r: list) -> dict:
3535
"""
36-
>>> from_wye_to_delta([2.0, 3.0, 4.0])
36+
>>> wye_to_delta([2.0, 3.0, 4.0])
3737
{'ra': 13.0, 'rb': 8.666666666666666, 'rc': 6.5}
3838
"""
3939
r1, r2, r3 = r[0], r[1], r[2]

0 commit comments

Comments
 (0)