Merge pull request #440 from phaluch/patch-1

Grammar corrections
This commit is contained in:
Harshil 2018-10-08 09:08:55 +02:00 committed by GitHub
commit f33c3baa3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
# Implementing Newton Raphson method in python
# Implementing Newton Raphson method in Python
# Author: Haseeb
from sympy import diff
@ -20,7 +20,7 @@ def NewtonRaphson(func, a):
# Let's Execute
if __name__ == '__main__':
# Find root of trignometric fucntion
# Find root of trigonometric function
# Find value of pi
print ('sin(x) = 0', NewtonRaphson('sin(x)', 2))