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

Reduce typo count #303

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ fn segment_plane_intersection(
}
}

/// Prints debug information if the calulated intersection of two triangles is detected to be
/// Prints debug information if the calculated intersection of two triangles is detected to be
/// invalid.
///
/// If the intersection is valid, this prints nothing. If it isnt valid, this will print a few
/// If the intersection is valid, this prints nothing. If it isn't valid, this will print a few
/// lines to copy/paste into the Desmos online graphing tool (for visual debugging), as well as
/// some rust code to add to the `tris` array in the `intersect_triangle_common_vertex` test for
/// regression checking.
Expand Down Expand Up @@ -273,7 +273,7 @@ fn debug_check_intersections(
}
println!(")");

println!("~~~~~~~ (copy/paste the folliwing input in the `intersect_triangle_common_vertex` test)");
println!("~~~~~~~ (copy/paste the following input in the `intersect_triangle_common_vertex` test)");
println!("(Triangle::new(");
for pt1 in poly1 {
println!(" Point2::new({},{}),", pt1.x, pt1.y);
Expand Down
Loading