aboutsummaryrefslogtreecommitdiffstats
path: root/components/shared/script
diff options
context:
space:
mode:
authorAarya Khandelwal <119049564+Aaryakhandelwal@users.noreply.github.com>2024-03-08 17:58:06 +0530
committerGitHub <noreply@github.com>2024-03-08 12:28:06 +0000
commitdd6c929cc6baaea4a385c8c2cc5dc5f3236e8c06 (patch)
tree83c720b9f62d7b03b7d59fb257a0e03982a53864 /components/shared/script
parent6b5a5147f8ce927fc8765e0ab5b447faa8744cd4 (diff)
downloadservo-dd6c929cc6baaea4a385c8c2cc5dc5f3236e8c06.tar.gz
servo-dd6c929cc6baaea4a385c8c2cc5dc5f3236e8c06.zip
Fix rustdoc errors in `components/shared` (#31582)
* Fixed error in documentation in components>shared>embedder>lib.rs * fixed documentation warning in compoenents>shared>net>request.rs * Fixed the documentation (URL issue) in components>shared>script>lib.rs
Diffstat (limited to 'components/shared/script')
-rw-r--r--components/shared/script/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/shared/script/lib.rs b/components/shared/script/lib.rs
index f39089cf3a0..8dd065a883f 100644
--- a/components/shared/script/lib.rs
+++ b/components/shared/script/lib.rs
@@ -1350,6 +1350,6 @@ pub enum GamepadUpdateType {
/// <https://www.w3.org/TR/gamepad/#dfn-represents-a-standard-gamepad-axis>
Axis(usize, f64),
/// Button index and input value
- /// <https://www.w3.org/TR/gamepad/#dfn-represents-a-standard-gamepad-button
+ /// <https://www.w3.org/TR/gamepad/#dfn-represents-a-standard-gamepad-button>
Button(usize, f64),
}