From 3e65269467d20ced6e97e4541616d0ca8f15d605 Mon Sep 17 00:00:00 2001 From: patrickariel <161032380+patrickariel@users.noreply.github.com> Date: Mon, 25 Nov 2024 06:29:04 +0700 Subject: [PATCH] fixup! Improve documentation for `Animator::with_target` Wrong kind of quote --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 204563c..2f64bd1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -537,7 +537,7 @@ impl Animator { } } - /// Create a new version of this animator with the [target] set to the given entity. + /// Create a new version of this animator with the `target` set to the given entity. pub fn with_target(mut self, entity: Entity) -> Self { self.target = Some(entity); self