Skip to content

Commit b6f8440

Browse files
committed
Fix
1 parent ed4f742 commit b6f8440

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

physics/newtons_second_law_of_motion.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
__________________ ____________________
3535
| The acceleration | | The acceleration |
3636
| depends directly | | depends inversely |
37-
| on the net Force | | upon the object's |
37+
| on the net force | | upon the object's |
3838
| | | mass |
3939
|__________________| |____________________|
4040
@@ -66,6 +66,8 @@
6666

6767
def newtons_second_law_of_motion(mass: float, acceleration: float) -> float:
6868
"""
69+
Calculates force from `mass` and `acceleration`
70+
6971
>>> newtons_second_law_of_motion(10, 10)
7072
100
7173
>>> newtons_second_law_of_motion(2.0, 1)

0 commit comments

Comments
 (0)