diff options
Diffstat (limited to 'components/script/textinput.rs')
-rw-r--r-- | components/script/textinput.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/textinput.rs b/components/script/textinput.rs index 92fd76706f2..a2374cb6a82 100644 --- a/components/script/textinput.rs +++ b/components/script/textinput.rs @@ -72,7 +72,7 @@ pub struct TextInput<T: ClipboardProvider> { clipboard_provider: T, /// The maximum number of UTF-16 code units this text input is allowed to hold. /// - /// https://html.spec.whatwg.org/multipage/#attr-fe-maxlength + /// <https://html.spec.whatwg.org/multipage/#attr-fe-maxlength> pub max_length: Option<usize>, pub min_length: Option<usize>, pub selection_direction: SelectionDirection, |