From 6d7f3a3b71f5fac361e2e1bf197297918b3cf566 Mon Sep 17 00:00:00 2001 From: Lukas Potthast Date: Fri, 5 Apr 2024 18:13:38 +0200 Subject: [PATCH] Make `Binding` documentation clearer by introducing commas --- leptos_dom/src/html.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leptos_dom/src/html.rs b/leptos_dom/src/html.rs index ddbf635cd3..65a4048784 100644 --- a/leptos_dom/src/html.rs +++ b/leptos_dom/src/html.rs @@ -366,7 +366,7 @@ where } } -/// Bind data through attributes or behavior through event handlers to an element. +/// Bind data through attributes, or behavior through event handlers, to an element. /// A collection of bindings (`collection: Vec`) can be spread onto an element like in `view! {
}`. pub enum Binding { /// A statically named attribute.