summaryrefslogtreecommitdiffstats
path: root/doc/GetVersion.3
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-09-08 14:34:35 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-09-08 14:34:35 (GMT)
commit7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4 (patch)
tree941ec84a540d886ab16d256cc6c408416dd860b0 /doc/GetVersion.3
parentfa105712c19ab4f84d85f6e33cb51a85e2ad259f (diff)
parent313d238fb894ff0775f40ec5aee77627742a3b1b (diff)
downloadtcl-7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4.zip
tcl-7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4.tar.gz
tcl-7eac217cbcdf7d0764c8fbc0a3c09bdd31fbc4a4.tar.bz2
merge bytecode init reworking
Diffstat (limited to 'doc/GetVersion.3')
-rwxr-xr-xdoc/GetVersion.38
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/GetVersion.3 b/doc/GetVersion.3
index 89f63d5..3672382 100755
--- a/doc/GetVersion.3
+++ b/doc/GetVersion.3
@@ -3,7 +3,7 @@
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-'\"
+'\"
.TH Tcl_GetVersion 3 7.5 Tcl "Tcl Library Procedures"
.so man.macros
.BS
@@ -24,14 +24,14 @@ Minor version number of the Tcl library.
The patch level of the Tcl library (or alpha or beta number).
.AP Tcl_ReleaseType *type out
The type of release, also indicates the type of patch level. Can be
-one of \fBTCL_ALPHA_RELEASE\fR, \fBTCL_BETA_RELEASE\fR, or
+one of \fBTCL_ALPHA_RELEASE\fR, \fBTCL_BETA_RELEASE\fR, or
\fBTCL_FINAL_RELEASE\fR.
.BE
.SH DESCRIPTION
.PP
\fBTcl_GetVersion\fR should be used to query the version number
-of the Tcl library at runtime. This is useful when using a
+of the Tcl library at runtime. This is useful when using a
dynamically loaded Tcl library or when writing a stubs-aware
extension. For instance, if you write an extension that is
linked against the Tcl stubs library, it could be loaded into
@@ -39,7 +39,7 @@ a program linked to an older version of Tcl than you expected.
Use \fBTcl_GetVersion\fR to verify that fact, and possibly to
change the behavior of your extension.
.PP
-\fBTcl_GetVersion\fR accepts NULL for any of the arguments. For instance if
+\fBTcl_GetVersion\fR accepts NULL for any of the arguments. For instance if
you do not care about the \fIpatchLevel\fR of the library, pass
a NULL for the \fIpatchLevel\fR argument.