# HG changeset patch # User Rik # Date 1323672889 28800 # Node ID 026b44b195b3bb6e5ad26bf0b7b0362130d001ed # Parent dfbf6a49847c1541404e3d475713377c210461fa doc: Demonstrate multiple calling convention usage in introduction intro.txi : Demonstrate multiple calling convention usage in introduction diff --git a/doc/interpreter/intro.txi b/doc/interpreter/intro.txi --- a/doc/interpreter/intro.txi +++ b/doc/interpreter/intro.txi @@ -562,7 +562,9 @@ Here is a description of an imaginary function @code{foo}: -@deftypefn {Function} {} foo (@var{x}, @var{y}, @dots{}) +@deftypefn {Function} {} foo (@var{x}) +@deftypefnx {Function} {} foo (@var{x}, @var{y}) +@deftypefnx {Function} {} foo (@var{x}, @var{y}, @dots{}) The function @code{foo} subtracts @var{x} from @var{y}, then adds the remaining arguments to the result. If @var{y} is not supplied, then the number 19 is used by default.