Skip to content

Commit

Permalink
kernel: fix documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
alevy committed Jul 24, 2024
1 parent 379cb47 commit b5fbfe7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions kernel/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,8 @@ pub trait Process {
/// Move this stopped process back into its original state.
///
/// This transitions a process from
/// [`StoppedRunning`](State::StoppedRunning) -> [`Running`](State::Running)
/// or [`StoppedYielded`](State::StoppedYielded) ->
/// [`Yielded`](State::Yielded).
/// [`Stopped`](State::Stopped) to [`Running`](State::Running), [`Yielded`](State::Running) or
/// [`YieldedFor`](State::YieldedFor).
///
/// This will fail (i.e. not do anything) if the process was not stopped.
fn resume(&self);
Expand Down

0 comments on commit b5fbfe7

Please sign in to comment.