mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
docs: minor documentation corrections (#2098)
* Docs: Fix Body docs incorrectly referring to html * Docs: Correct X/Z/Z to X/Y/Z in CONTRIBUTING
This commit is contained in:
parent
6014a70d0d
commit
fcc9242a63
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -92,7 +92,7 @@ pub fn Body(
|
|||
/// The `class` attribute on the `<body>`.
|
||||
#[prop(optional, into)]
|
||||
class: Option<TextProp>,
|
||||
/// Arbitrary attributes to add to the `<html>`
|
||||
/// Arbitrary attributes to add to the `<body>`
|
||||
#[prop(attrs)]
|
||||
attributes: Vec<(&'static str, Attribute)>,
|
||||
) -> impl IntoView {
|
||||
|
|
Loading…
Reference in a new issue