From 6fbde6720f688901fd649323206880e576adc3d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Sat, 6 Sep 2025 21:19:14 +0200 Subject: [PATCH] Fix typo in `wgpu::Primitive` docs --- wgpu/src/primitive.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wgpu/src/primitive.rs b/wgpu/src/primitive.rs index 49081b60..592a3375 100644 --- a/wgpu/src/primitive.rs +++ b/wgpu/src/primitive.rs @@ -44,9 +44,9 @@ pub trait Primitive: Debug + MaybeSend + MaybeSync + 'static { /// Draws the [`Primitive`] in the given [`wgpu::RenderPass`]. /// - /// When possible, this should be implement over [`render`](Self::render) + /// When possible, this should be implemented over [`render`](Self::render) /// since reusing the existing render pass should be considerably more - /// efficient than issuing a completely new one. + /// efficient than issuing a new one. /// /// If you have complex composition needs, then you can leverage /// [`render`](Self::render) by returning `false` here.