diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2020-03-04 18:21:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 18:21:12 -0500 |
commit | ea8aed1ba927012d992a3d3c9880858e0282f5f9 (patch) | |
tree | e7a9ab0d8f3ca1602ea041a5d01d8c3b6d7f2c86 /components/script/dom/baseaudiocontext.rs | |
parent | 3749eb53971b688b855d6b1850f41b4c346cd2da (diff) | |
parent | bf7537ef5bdcff5dcb4eb8b61923acc614211372 (diff) | |
download | servo-ea8aed1ba927012d992a3d3c9880858e0282f5f9.tar.gz servo-ea8aed1ba927012d992a3d3c9880858e0282f5f9.zip |
Auto merge of #25898 - jdm:rustup, r=asajeffrey
Update to 3/4 nightly rustc.
The comment changes address a bunch of new warnings that look like this:
```
warning: unused doc comment
--> components/script/dom/rtcpeerconnection.rs:449:5
|
449 | /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-signalingstatechange
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macros
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
```
Diffstat (limited to 'components/script/dom/baseaudiocontext.rs')
-rw-r--r-- | components/script/dom/baseaudiocontext.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/baseaudiocontext.rs b/components/script/dom/baseaudiocontext.rs index c84d62f6dc3..14c6bc94e1c 100644 --- a/components/script/dom/baseaudiocontext.rs +++ b/components/script/dom/baseaudiocontext.rs @@ -331,7 +331,7 @@ impl BaseAudioContextMethods for BaseAudioContext { self.listener.or_init(|| AudioListener::new(&window, self)) } - /// https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-onstatechange + // https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-onstatechange event_handler!(statechange, GetOnstatechange, SetOnstatechange); /// https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createoscillator |