From fcc9242a63694e8c1a9674a63fb92aa50fea0cb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niclas=20=C3=85hd=C3=A9n?= Date: Sun, 10 Dec 2023 20:24:16 +0100 Subject: [PATCH] docs: minor documentation corrections (#2098) * Docs: Fix Body docs incorrectly referring to html * Docs: Correct X/Z/Z to X/Y/Z in CONTRIBUTING --- CONTRIBUTING.md | 2 +- meta/src/body.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7dd4cea21c..126d202f76 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,7 +62,7 @@ are a few guidelines that will make it a better experience for everyone: - If it’s an unsolicited PR not linked to an open issue, please include a specific explanation for what it’s trying to achieve. For example: “When I was trying to deploy my app under _circumstances X_, I found that the way - _function Z_ was implemented caused _issue Z_. This PR should fix that by + _function Y_ was implemented caused _issue Z_. This PR should fix that by _solution._” - Our CI tests every PR against all the existing examples, sometimes requiring compilation for both server and client side, etc. It’s thorough but slow. If diff --git a/meta/src/body.rs b/meta/src/body.rs index c9a1ad3f03..e0a2aaf49e 100644 --- a/meta/src/body.rs +++ b/meta/src/body.rs @@ -92,7 +92,7 @@ pub fn Body( /// The `class` attribute on the ``. #[prop(optional, into)] class: Option, - /// Arbitrary attributes to add to the `` + /// Arbitrary attributes to add to the `` #[prop(attrs)] attributes: Vec<(&'static str, Attribute)>, ) -> impl IntoView {