summaryrefslogtreecommitdiff
path: root/src/geom
diff options
context:
space:
mode:
Diffstat (limited to 'src/geom')
-rw-r--r--src/geom/ratio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geom/ratio.rs b/src/geom/ratio.rs
index 7be16ff8..5490bcba 100644
--- a/src/geom/ratio.rs
+++ b/src/geom/ratio.rs
@@ -18,7 +18,7 @@ impl Ratio {
Self(Scalar(1.0))
}
- /// Create a new ratio from a value, whre `1.0` means `100%`.
+ /// Create a new ratio from a value, where `1.0` means `100%`.
pub const fn new(ratio: f64) -> Self {
Self(Scalar(ratio))
}