From 5607224be61e452d908a2b9911f82b3019347586 Mon Sep 17 00:00:00 2001 From: czkz <61359572+czkz@users.noreply.github.com> Date: Thu, 21 Oct 2021 11:19:01 +0300 Subject: [PATCH] docs: improve os.ProcessState markdown rendering (#12245) --- vlib/os/process.v | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vlib/os/process.v b/vlib/os/process.v index 3f883987d3..fee85d8413 100644 --- a/vlib/os/process.v +++ b/vlib/os/process.v @@ -1,11 +1,11 @@ module os -// ProcessState.not_started - the process has not yet started -// ProcessState.running - the process is currently running -// ProcessState.stopped - the process was running, but was stopped temporarily -// ProcessState.exited - the process has finished/exited -// ProcessState.aborted - the process was terminated by a signal -// ProcessState.closed - the process resources like opened file descriptors were freed/discarded, final state. +// - ProcessState.not_started - the process has not yet started +// - ProcessState.running - the process is currently running +// - ProcessState.stopped - the process was running, but was stopped temporarily +// - ProcessState.exited - the process has finished/exited +// - ProcessState.aborted - the process was terminated by a signal +// - ProcessState.closed - the process resources like opened file descriptors were freed/discarded, final state. pub enum ProcessState { not_started running