Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Dec 2020 10:20:22 +0000 (UTC)
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r368795 - head/share/man/man9
Message-ID:  <202012191020.0BJAKMh0027086@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gbe (doc committer)
Date: Sat Dec 19 10:20:22 2020
New Revision: 368795
URL: https://svnweb.freebsd.org/changeset/base/368795

Log:
  fail(9): Fix a few mandoc related issues
  
  - function name without markup: return()
  - function name without markup: print()
  
  MFC after:	1 week

Modified:
  head/share/man/man9/fail.9

Modified: head/share/man/man9/fail.9
==============================================================================
--- head/share/man/man9/fail.9	Sat Dec 19 10:18:21 2020	(r368794)
+++ head/share/man/man9/fail.9	Sat Dec 19 10:20:22 2020	(r368795)
@@ -218,9 +218,15 @@ The operator -> can be used to express cascading terms
 If you specify <term1>-><term2>, it means that if <term1> does not
 .Ql execute ,
 <term2> is evaluated.
-For the purpose of this operator, the return() and print() operators
-are the only types that cascade.
-A return() term only cascades if the code executes, and a print()
+For the purpose of this operator, the
+.Fn return
+and
+.Fn print
+operators are the only types that cascade.
+A
+.Fn return
+term only cascades if the code executes, and a
+.Fn print
 term only cascades when passed a non-zero argument.
 A pid can optionally be specified.
 The fail point term is only executed when invoked by a process with a



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012191020.0BJAKMh0027086>