Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parenthese Mismatch #243

Open
musagenius345 opened this issue Nov 27, 2023 · 0 comments
Open

Parenthese Mismatch #243

musagenius345 opened this issue Nov 27, 2023 · 0 comments

Comments

@musagenius345
Copy link

The readme contains a potential parentheses mismatch in the addmTwo example, specifically in the second usage example:

addmTwo(m(1, m(Math.PI, 'pi'))) // {value:4.14159..., source:"(1+pi)"}

It seems there might be an extra closing parenthesis at the end of the source value. The correct representation should likely be:

addmTwo(m(1), m(Math.PI, 'pi')) // {value:4.14159..., source:"(1+pi)"}

This adjustment ensures that the parentheses in the source value are properly matched and represent the intended mathematical expression.

Please review and address this discrepancy in the readme.

Thank you!

willdelorm added a commit to willdelorm/JS_Fun_Practice that referenced this issue Jan 10, 2024
kennithnichol added a commit that referenced this issue Jan 10, 2024
README Fix parentheses mismatch noted in inssue #243
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant