diff options
Diffstat (limited to 'components/script/dom/gpuvalidationerror.rs')
-rw-r--r-- | components/script/dom/gpuvalidationerror.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/gpuvalidationerror.rs b/components/script/dom/gpuvalidationerror.rs index 044502bfa32..176429ef490 100644 --- a/components/script/dom/gpuvalidationerror.rs +++ b/components/script/dom/gpuvalidationerror.rs @@ -42,7 +42,7 @@ impl GPUValidationError { ) } - /// https://gpuweb.github.io/gpuweb/#dom-gpuvalidationerror-gpuvalidationerror + /// <https://gpuweb.github.io/gpuweb/#dom-gpuvalidationerror-gpuvalidationerror> #[allow(non_snake_case)] pub fn Constructor( global: &GlobalScope, @@ -54,7 +54,7 @@ impl GPUValidationError { } impl GPUValidationErrorMethods for GPUValidationError { - /// https://gpuweb.github.io/gpuweb/#dom-gpuvalidationerror-message + /// <https://gpuweb.github.io/gpuweb/#dom-gpuvalidationerror-message> fn Message(&self) -> DOMString { self.message.clone() } |