mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
Correct a variety of documentation issues (#34786)
Fix some warnings in documentation as well as some faulty documentation introduced in #34776. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
3aa9e00e4e
commit
93ae8d22fc
11 changed files with 20 additions and 19 deletions
|
@ -318,12 +318,13 @@ pub(crate) struct ScriptThreadReceivers {
|
|||
#[no_trace]
|
||||
pub image_cache_receiver: Receiver<ImageCacheMsg>,
|
||||
|
||||
/// For receiving commands from an optional devtools server. Will be ignored if
|
||||
/// no such server exists.
|
||||
/// For receiving commands from an optional devtools server. Will be ignored if no such server
|
||||
/// exists. When devtools are not active this will be [`crossbeam_channel::never()`].
|
||||
#[no_trace]
|
||||
pub devtools_server_receiver: Receiver<DevtoolScriptControlMsg>,
|
||||
|
||||
/// Receiver to receive commands from optional WebGPU server.
|
||||
/// Receiver to receive commands from optional WebGPU server. When there is no active
|
||||
/// WebGPU context, this will be [`crossbeam_channel::never()`].
|
||||
#[no_trace]
|
||||
#[cfg(feature = "webgpu")]
|
||||
pub webgpu_receiver: RefCell<Receiver<WebGPUMsg>>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue