aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-07-18 14:44:48 +0700
committerGitHub <noreply@github.com>2024-07-18 09:44:48 +0200
commit00f59d2877faa1cc3d1931664ba691f5d9324243 (patch)
treec71be6b35960768048ec91302bf6912a0f28e874 /src/lib.rs
parent6a295d3e8e372390174cc5b3e286631eb47495c1 (diff)
downloadrapier-00f59d2877faa1cc3d1931664ba691f5d9324243.tar.gz
rapier-00f59d2877faa1cc3d1931664ba691f5d9324243.tar.bz2
rapier-00f59d2877faa1cc3d1931664ba691f5d9324243.zip
clippy: Fix `clippy::lazy_doc_continuation` lints (#689)
These will be enabled in Rust 1.80 by default.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 560fd6b..cf2503d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -6,7 +6,7 @@
//! Rapier has some unique features for collaborative applications:
//! - The ability to snapshot the state of the physics engine, and restore it later.
//! - The ability to run a perfectly deterministic simulation on different machine, as long as they
-//! are compliant with the IEEE 754-2008 floating point standard.
+//! are compliant with the IEEE 754-2008 floating point standard.
//!
//! User documentation for Rapier is on [the official Rapier site](https://rapier.rs/docs/).