summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ParseCmd.32
-rw-r--r--doc/Tcl.n8
-rw-r--r--doc/ToUpper.32
-rw-r--r--doc/Utf.32
-rw-r--r--doc/binary.n6
5 files changed, 10 insertions, 10 deletions
diff --git a/doc/ParseCmd.3 b/doc/ParseCmd.3
index ff1be23..e1a8790 100644
--- a/doc/ParseCmd.3
+++ b/doc/ParseCmd.3
@@ -300,7 +300,7 @@ The token describes a range of literal text that is part of a word.
The \fInumComponents\fR field is always 0.
.TP
\fBTCL_TOKEN_BS\fR
-The token describes a backslash sequence such as \fB\en\fR or \fB\e0xa3\fR.
+The token describes a backslash sequence such as \fB\en\fR or \fB\e0xA3\fR.
The \fInumComponents\fR field is always 0.
.TP
\fBTCL_TOKEN_COMMAND\fR
diff --git a/doc/Tcl.n b/doc/Tcl.n
index 980d81f..5c09cb8 100644
--- a/doc/Tcl.n
+++ b/doc/Tcl.n
@@ -146,19 +146,19 @@ Audible alert (bell) (0x7).
Backspace (0x8).
.TP 7
\e\fBf\fR
-Form feed (0xc).
+Form feed (0xC).
.TP 7
\e\fBn\fR
-Newline (0xa).
+Newline (0xA).
.TP 7
\e\fBr\fR
-Carriage-return (0xd).
+Carriage-return (0xD).
.TP 7
\e\fBt\fR
Tab (0x9).
.TP 7
\e\fBv\fR
-Vertical tab (0xb).
+Vertical tab (0xB).
.TP 7
\e\fB<newline>\fIwhiteSpace\fR
.
diff --git a/doc/ToUpper.3 b/doc/ToUpper.3
index 587e76b..ef3e491 100644
--- a/doc/ToUpper.3
+++ b/doc/ToUpper.3
@@ -81,7 +81,7 @@ and all following characters into their lower-case equivalents.
.SH BUGS
.PP
At this time, the case conversions are only defined for the ISO8859-1
-characters. Unicode characters above 0x00ff are not modified by these
+characters. Unicode characters above 0x00FF are not modified by these
routines.
.SH KEYWORDS
diff --git a/doc/Utf.3 b/doc/Utf.3
index 903fac7..5361f32 100644
--- a/doc/Utf.3
+++ b/doc/Utf.3
@@ -142,7 +142,7 @@ end and dereference non-existent or random memory; if the source buffer
is known to be null-terminated, this will not happen. If the input is
not in proper UTF-8 format, \fBTcl_UtfToUniChar\fR will store the first
byte of \fIsrc\fR in \fI*chPtr\fR as a Tcl_UniChar between 0x0000 and
-0x00ff and return 1.
+0x00FF and return 1.
.PP
\fBTcl_UniCharToUtfDString\fR converts the given Unicode string
to UTF-8, storing the result in a previously initialized \fBTcl_DString\fR.
diff --git a/doc/binary.n b/doc/binary.n
index ff800f0..5f1efaf 100644
--- a/doc/binary.n
+++ b/doc/binary.n
@@ -561,7 +561,7 @@ stored in \fIvar2\fR. Note that the integers returned are signed, but
they can be converted to unsigned 8-bit quantities using an expression
like:
.CS
-set num [expr { $num & 0xff }]
+set num [expr { $num & 0xFF }]
.CE
.RE
.IP \fBs\fR 5
@@ -580,7 +580,7 @@ stored in \fIvar2\fR. Note that the integers returned are signed, but
they can be converted to unsigned 16-bit quantities using an expression
like:
.CS
-set num [expr { $num & 0xffff }]
+set num [expr { $num & 0xFFFF }]
.CE
.RE
.IP \fBS\fR 5
@@ -619,7 +619,7 @@ stored in \fIvar2\fR. Note that the integers returned are signed, but
they can be converted to unsigned 32-bit quantities using an expression
like:
.CS
-set num [expr { $num & 0xffffffff }]
+set num [expr { $num & 0xFFFFFFFF }]
.CE
.RE
.IP \fBI\fR 5