aboutsummaryrefslogtreecommitdiff
path: root/src/data/graph.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2023-09-09 12:56:35 +0200
committerGitHub <noreply@github.com>2023-09-09 12:56:35 +0200
commit32ffb3e1aa0bbd62bbd977e195aa6a769e8af61b (patch)
treeab306834d4be1b81e215f0307bc902dd5ca40ce9 /src/data/graph.rs
parentb977d41e5b1268d76ef0bc66f3b48baaa47ec9a2 (diff)
parentb9b5b58f615a7e97dafa251b1f43e74e81b33fe0 (diff)
downloadrapier-32ffb3e1aa0bbd62bbd977e195aa6a769e8af61b.tar.gz
rapier-32ffb3e1aa0bbd62bbd977e195aa6a769e8af61b.tar.bz2
rapier-32ffb3e1aa0bbd62bbd977e195aa6a769e8af61b.zip
Merge pull request #521 from waywardmonkeys/expand-wrt
docs: Expand "wrt" to "with respect to".
Diffstat (limited to 'src/data/graph.rs')
-rw-r--r--src/data/graph.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/graph.rs b/src/data/graph.rs
index dd2c760..6a3ba15 100644
--- a/src/data/graph.rs
+++ b/src/data/graph.rs
@@ -1,5 +1,5 @@
// This is basically a stripped down version of petgraph's UnGraph.
-// - It is not generic wrt. the index type (we always use u32).
+// - It is not generic with respect to the index type (we always use u32).
// - It preserves associated edge iteration order after Serialization/Deserialization.
// - It is always undirected.
//! A stripped-down version of petgraph's UnGraph.