summaryrefslogtreecommitdiffstats
path: root/doc/mathfunc.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-11-01 23:06:49 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-11-01 23:06:49 (GMT)
commit8700b04b46fb89254c0ce1489142dd0a7bf68702 (patch)
treeaf8973c3e99583aea20766208e987fea4bec14eb /doc/mathfunc.n
parente8451cb894423d88f84302c23461a27cff4579c5 (diff)
downloadtcl-8700b04b46fb89254c0ce1489142dd0a7bf68702.zip
tcl-8700b04b46fb89254c0ce1489142dd0a7bf68702.tar.gz
tcl-8700b04b46fb89254c0ce1489142dd0a7bf68702.tar.bz2
Reorder paragraphs for better readability.
Diffstat (limited to 'doc/mathfunc.n')
-rw-r--r--doc/mathfunc.n18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/mathfunc.n b/doc/mathfunc.n
index 9c60bd9..0094a29 100644
--- a/doc/mathfunc.n
+++ b/doc/mathfunc.n
@@ -6,7 +6,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: mathfunc.n,v 1.19 2007/10/30 21:38:06 dkf Exp $
+'\" RCS: @(#) $Id: mathfunc.n,v 1.20 2007/11/01 23:06:49 dkf Exp $
'\"
.so man.macros
.TH mathfunc n 8.5 Tcl "Tcl Mathematical Functions"
@@ -107,6 +107,14 @@ of which work solely with floating-point numbers unless otherwise noted:
\fBtan\fR \fBtanh\fR \fBwide\fR
.DE
.PP
+In addition to these predefined functions, applications may
+define additional functions by using \fBproc\fR (or any other method,
+such as \fBinterp alias\fR or \fBTcl_CreateObjCommand\fR) to define
+new commands in the \fBtcl::mathfunc\fR namespace. In addition, an
+obsolete interface named \fBTcl_CreateMathFunc\fR() is available to
+extensions that are written in C. The latter interface is not recommended
+for new implementations.
+.SS "DETAILED DEFINITIONS"
.TP
\fBabs \fIarg\fR
Returns the absolute value of \fIarg\fR. \fIArg\fR may be either
@@ -255,14 +263,6 @@ Returns the hyperbolic tangent of \fIarg\fR.
The argument may be any numeric value. The integer part of \fIarg\fR
is determined, and then the low order 64 bits of that integer value
are returned as an integer value.
-.PP
-In addition to these predefined functions, applications may
-define additional functions by using \fBproc\fR (or any other method,
-such as \fBinterp alias\fR or \fBTcl_CreateObjCommand\fR) to define
-new commands in the \fBtcl::mathfunc\fR namespace. In addition, an
-obsolete interface named \fBTcl_CreateMathFunc\fR() is available to
-extensions that are written in C. The latter interface is not recommended
-for new implementations.
.SH "SEE ALSO"
expr(n), mathop(n), namespace(n)
.SH "COPYRIGHT"