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

Code comment #33

Open
rafaelcorsi opened this issue Feb 10, 2021 · 2 comments
Open

Code comment #33

rafaelcorsi opened this issue Feb 10, 2021 · 2 comments

Comments

@rafaelcorsi
Copy link

rafaelcorsi commented Feb 10, 2021

* @brief Check if the current point is **not** equivalent to another point

should be:

  • @brief Check if the current point is equivalent to another point

as the function compares two points:

bool TSPoint::operator==(TSPoint p1) {
  return ((p1.x == x) && (p1.y == y) && (p1.z == z));
}
@ladyada
Copy link
Member

ladyada commented Feb 10, 2021

well i mean, it does both lol
you can submit a PR to change the comment if ya like!

@jadonmmiller
Copy link
Contributor

I just fixed this in PR #34.

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

3 participants