Skip to content

Commit

Permalink
Fix various typos
Browse files Browse the repository at this point in the history
Found via codespell
  • Loading branch information
luzpaz committed Dec 21, 2024
1 parent 721822d commit e35ce70
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion truck-meshalgo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub mod rexport_polymesh {
}
use truck_polymesh::{StandardVertex as Vertex, *};

/// polygon mesh analizers, including
/// polygon mesh analyzers, including
///
/// - determines topological properties: connectivity, boundary extraction, or shell conditions (closed or oriented)
/// - detects collisions between two meshes and extracts interference lines
Expand Down
2 changes: 1 addition & 1 deletion truck-shapeops/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Crates.io](https://img.shields.io/crates/v/truck-shapeops.svg)](https://crates.io/crates/truck-shapeops) [![Docs.rs](https://docs.rs/truck-shapeops/badge.svg)](https://docs.rs/truck-shapeops)

Crate for operationg shapes. Provides boolean operations to Solid, and shape healing for importing shapes from other CAD systems.
Crate for operation shapes. Provides boolean operations to Solid, and shape healing for importing shapes from other CAD systems.

## Sample Codes

Expand Down
2 changes: 1 addition & 1 deletion truck-shapeops/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Crate for operationg shapes. Provides boolean operations to Solid, and shape healing for importing shapes from other CAD systems.
//! Crate for operation shapes. Provides boolean operations to Solid, and shape healing for importing shapes from other CAD systems.
#![cfg_attr(not(debug_assertions), deny(warnings))]
#![deny(clippy::all, rust_2018_idioms)]
Expand Down
4 changes: 2 additions & 2 deletions truck-topology/src/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ impl<P, C, S> Shell<P, C, S> {

/// Returns the adjacency matrix of vertices in the shell.
///
/// For the returned hashmap `map` and each vertex `v`,
/// the vector `map[&v]` cosists all vertices which is adjacent to `v`.
/// For the returned hashmap `map` and each vertex `v`, the
/// vector `map[&v]` consists of all vertices which is adjacent to `v`.
/// # Examples
/// ```
/// use truck_topology::*;
Expand Down

0 comments on commit e35ce70

Please sign in to comment.