aboutsummaryrefslogtreecommitdiffstats
path: root/signal.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-01-01 14:33:06 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-01-01 14:50:39 +0900
commitf527a0911d5ff0476152a3e3c9bcd2247ead5636 (patch)
tree1b0ebe01a96a590893df3fb1828207983463fb55 /signal.c
parent0bb07e5ba40cdc45d55743dd1ebaadd7e7363e7f (diff)
downloadruby-f527a0911d5ff0476152a3e3c9bcd2247ead5636.tar.gz
[DOC] [Bug #19290] fix formatting
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/signal.c b/signal.c
index 04db34fc3d..544854e014 100644
--- a/signal.c
+++ b/signal.c
@@ -1383,7 +1383,7 @@ reserved_signal_p(int signo)
* Signal.trap("CLD") { puts "Child died" }
* fork && Process.wait
*
- * produces:
+ * <em>produces:</em>
* Terminating: 27461
* Child died
* Terminating: 27460
@@ -1535,10 +1535,10 @@ int ruby_enable_coredump = 0;
* # ...
* Process.kill("TERM", pid)
*
- * produces:
+ * <em>produces:</em>
* Debug now: true
* Debug now: false
- * Terminating...
+ * Terminating...
*
* The list of available signal names and their interpretation is
* system dependent. Signal delivery semantics may also vary between