mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
docs: Use intradoc links for method references. (#9958)
# Objective - Use intradoc links to let the compiler verify correctness. ## Solution - Use intradoc links.
This commit is contained in:
parent
edba496697
commit
a5a457c3c8
1 changed files with 2 additions and 2 deletions
|
@ -88,9 +88,9 @@ pub trait Command: Send + 'static {
|
|||
///
|
||||
/// # Implementing
|
||||
///
|
||||
/// Each built-in command is implemented as a separate method, e.g. [`spawn`](#method.spawn).
|
||||
/// Each built-in command is implemented as a separate method, e.g. [`Commands::spawn`].
|
||||
/// In addition to the pre-defined command methods, you can add commands with any arbitrary
|
||||
/// behavior using [`Commands::add`](#method.add), which accepts any type implementing [`Command`].
|
||||
/// behavior using [`Commands::add`], which accepts any type implementing [`Command`].
|
||||
///
|
||||
/// Since closures and other functions implement this trait automatically, this allows one-shot,
|
||||
/// anonymous custom commands.
|
||||
|
|
Loading…
Reference in a new issue