mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 14:40:06 +02:00
Fix bad method links in docstrings (#13471)
# Description Seems like I developed a bit of a bad habit of trying to link ```rust /// [`.foo()`] ``` in docstrings, and this just doesn't work automatically; you have to do ```rust /// [`.foo()`](Self::foo) ``` if you want it to actually link. I think I found and replaced all of these. # User-Facing Changes Just docs.
This commit is contained in:
@ -105,10 +105,10 @@ impl Drop for ForegroundChild {
|
||||
///
|
||||
/// If there is already a foreground external process running, spawned with [`ForegroundChild`],
|
||||
/// this expects the process ID to remain in the process group created by the [`ForegroundChild`]
|
||||
/// for the lifetime of the guard, and keeps the terminal controlling process group set to that. If
|
||||
/// there is no foreground external process running, this sets the foreground process group to the
|
||||
/// plugin's process ID. The process group that is expected can be retrieved with [`.pgrp()`] if
|
||||
/// different from the plugin process ID.
|
||||
/// for the lifetime of the guard, and keeps the terminal controlling process group set to that.
|
||||
/// If there is no foreground external process running, this sets the foreground process group to
|
||||
/// the plugin's process ID. The process group that is expected can be retrieved with
|
||||
/// [`.pgrp()`](Self::pgrp) if different from the plugin process ID.
|
||||
///
|
||||
/// ## Other systems
|
||||
///
|
||||
|
Reference in New Issue
Block a user