aboutsummaryrefslogtreecommitdiff
path: root/src/data
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2023-08-28 11:13:27 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2023-08-28 11:13:27 +0700
commitb9b5b58f615a7e97dafa251b1f43e74e81b33fe0 (patch)
tree6ac94ae3418c29f9b11882408b2befd94ed55c91 /src/data
parent5c6def32396016f431552f8d0468ac4d5cee16e8 (diff)
downloadrapier-b9b5b58f615a7e97dafa251b1f43e74e81b33fe0.tar.gz
rapier-b9b5b58f615a7e97dafa251b1f43e74e81b33fe0.tar.bz2
rapier-b9b5b58f615a7e97dafa251b1f43e74e81b33fe0.zip
docs: Expand "wrt" to "with respect to".
This makes things more clear as this abbreviation isn't known to everyone. While the trailing period is common in French, it isn't in English (one might use "w.r.t."). Fixes #498.
Diffstat (limited to 'src/data')
-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.