Skip to content

Commit 9139169

Browse files
authored
Bump rust toolchain 1.87.0 (#49)
closes #48
1 parent 480e950 commit 9139169

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

crates/triangulation/src/face_triangulation.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,14 @@ fn get_left_right_edges_bottom(s1: &Segment, s2: &Segment) -> (Segment, Segment)
196196
///
197197
/// # Fields
198198
/// * `segment_to_line` - Maps segments to their associated intervals in the sweep line.
199-
/// Uses interior mutability (`RefCell`) to allow modification during traversal
200-
/// and reference counting (`Rc`) for shared ownership.
199+
/// Uses interior mutability (`RefCell`) to allow modification during traversal
200+
/// and reference counting (`Rc`) for shared ownership.
201201
///
202202
/// * `point_to_edges` - Maps each vertex to its connected segment endpoints, maintaining the
203-
/// topological relationships between points in the polygon.
203+
/// topological relationships between points in the polygon.
204204
///
205205
/// * `monotone_polygons` - Accumulates the resulting monotone polygons as they are constructed
206-
/// during the sweep line process.
206+
/// during the sweep line process.
207207
///
208208
/// # Algorithm
209209
/// The builder implements a sweep line algorithm that:

crates/triangulation/src/intersection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ pub fn find_intersections(segments: &[point::Segment]) -> HashSet<OrderedPair> {
405405
/// # Arguments
406406
///
407407
/// * `polygon_list` - A slice of vectors, with each vector containing `Point` instances
408-
/// representing a polygon
408+
/// representing a polygon
409409
///
410410
/// # Returns
411411
///

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.85.0"
2+
channel = "1.87.0"

0 commit comments

Comments
 (0)