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

Fix various typos #86

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
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